lang-zh.d.ts 367 B

1234567891011
  1. import { Wordlist } from "./wordlist";
  2. declare class LangZh extends Wordlist {
  3. constructor(country: string);
  4. getWord(index: number): string;
  5. getWordIndex(word: string): number;
  6. split(mnemonic: string): Array<string>;
  7. }
  8. declare const langZhCn: LangZh;
  9. declare const langZhTw: LangZh;
  10. export { langZhCn, langZhTw };
  11. //# sourceMappingURL=lang-zh.d.ts.map