質問編集履歴
2
コード修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -19,7 +19,7 @@
|
|
19
19
|
declare class Person {
|
20
20
|
constructor(name: string)
|
21
21
|
name: string
|
22
|
-
say():
|
22
|
+
say(): string
|
23
23
|
}
|
24
24
|
```
|
25
25
|
```TypeScript
|
1
コード修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -19,7 +19,7 @@
|
|
19
19
|
declare class Person {
|
20
20
|
constructor(name: string)
|
21
21
|
name: string
|
22
|
-
say(
|
22
|
+
say(): void
|
23
23
|
}
|
24
24
|
```
|
25
25
|
```TypeScript
|