11 lines
337 B
TypeScript
Raw Normal View History

2025-04-19 15:38:48 +08:00
import { Wordlist } from '../utils/wordlist';
declare class LangZh extends Wordlist {
constructor(country: string);
getWord(index: number): string;
getWordIndex(word: string): number;
split(mnemonic: string): Array<string>;
}
declare const langZhCn: LangZh;
declare const langZhTw: LangZh;
export { langZhCn, langZhTw };