10 lines
165 B
TypeScript
10 lines
165 B
TypeScript
![]() |
export interface IVocab {
|
||
|
german: string;
|
||
|
latin: string;
|
||
|
hint?: string;
|
||
|
mnemonic?: string;
|
||
|
|
||
|
// This number is lesson specific
|
||
|
id: number;
|
||
|
};
|