pinyindct-open/src/Types.ts

14 lines
258 B
TypeScript

export type proc = (caption: String) => void;
export type justproc = () => void;
export type Syllable = {
syllable: String,
initiale: String,
finale: String,
tones: String[]
}
export type Finale = {
caption: String,
finale: String
}