回答編集履歴
2
プロパティの型名が、間違っていたので修正
test
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
export interface AppConstInterface {
|
12
12
|
|
13
|
-
readonly COMPANY_NAME:
|
13
|
+
readonly COMPANY_NAME: string;
|
14
14
|
|
15
15
|
// 他にも定数定義
|
16
16
|
|
1
interface名が間違っていたので修正
test
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
// コンポーネントでそのまま使えるよう、interfaceにて型として定義
|
10
10
|
|
11
|
-
export interface AppConst
|
11
|
+
export interface AppConstInterface {
|
12
12
|
|
13
13
|
readonly COMPANY_NAME: DateMomentFormat;
|
14
14
|
|
@@ -20,7 +20,7 @@
|
|
20
20
|
|
21
21
|
// コンポーネントでもそのまま使えるよう、変数として定義
|
22
22
|
|
23
|
-
export const AppConst: AppConst
|
23
|
+
export const AppConst: AppConstInterface = {
|
24
24
|
|
25
25
|
COMPANY_NAME: 'capsule INC.',
|
26
26
|
|