15 lines
225 B
TypeScript
15 lines
225 B
TypeScript
export enum ReviewMode {
|
|
GER_TO_LAT,
|
|
LAT_TO_GER,
|
|
}
|
|
|
|
export interface IVocab {
|
|
german: string;
|
|
latin: string;
|
|
hint?: string;
|
|
mnemonic?: string;
|
|
|
|
// This number is lesson specific
|
|
id: number;
|
|
};
|