This commit is contained in:
2026-01-13 23:02:07 +08:00
parent a1e42127e6
commit 804baa64b2
71 changed files with 658 additions and 925 deletions

View File

@@ -0,0 +1,11 @@
export type TSharedEntry = {
definition: string,
example: string,
partOfSpeech?: string;
ipa?: string;
};
export type TSharedItem = {
standardForm: string,
entries: TSharedEntry[];
};

View File

@@ -0,0 +1,3 @@
export type TSharedPair = {
};

1
src/shared/index.ts Normal file
View File

@@ -0,0 +1 @@
export * from './dictionary-type';