This commit is contained in:
zyronon
2023-12-13 17:42:17 +08:00
parent 1a70c9af45
commit 2baf00e780
3 changed files with 8 additions and 3 deletions

View File

@@ -4,11 +4,16 @@ import codeFlag from "@/assets/img/flags/code.png";
import myFlag from "@/assets/img/flags/my.png";
import {DefaultChapterWordNumber} from "@/stores/setting.ts";
export type WordTrans = {
pos: string,
cn: string,
en: string
}
export type Word = {
"word": string,
"phonetic0": string,
"phonetic1": string,
"trans": string[]
"trans": WordTrans[]
checked?: boolean,
id?: any,
}