新增记忆字母表功能
This commit is contained in:
13
src/interfaces.ts
Normal file
13
src/interfaces.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
export interface Word {
|
||||
word: string;
|
||||
x: number;
|
||||
y: number;
|
||||
}export interface Letter {
|
||||
letter: string;
|
||||
letter_name_ipa: string;
|
||||
letter_sound_ipa: string;
|
||||
roman_letter?: string;
|
||||
}
|
||||
export type SupportedAlphabets = 'japanese' | 'english' | 'esperanto' | 'uyghur';
|
||||
|
||||
Reference in New Issue
Block a user