2018-09-24 16:07:14 -04:00
|
|
|
import { Wordlist } from '../utils/wordlist';
|
2018-07-23 19:21:42 -04:00
|
|
|
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 };
|