src/app/shared/interface/IWord.ts
Properties |
| category |
category:
|
Type : string
|
|
Defined in src/app/shared/interface/IWord.ts:3
|
| id |
id:
|
Type : number
|
|
Defined in src/app/shared/interface/IWord.ts:4
|
| value |
value:
|
Type : string
|
|
Defined in src/app/shared/interface/IWord.ts:5
|
export interface IWord {
category: string,
id: number,
value: string
}