2
0
mirror of synced 2025-02-25 04:25:16 +00:00
ethers.js/wordlists/lang-en.d.ts

9 lines
225 B
TypeScript

import { Wordlist } from './wordlist';
declare class LangEn extends Wordlist {
constructor();
getWord(index: number): string;
getWordIndex(word: string): number;
}
declare const langEn: LangEn;
export { langEn };