ethers.js/wordlists/lang-it.d.ts

9 lines
225 B
TypeScript
Raw Normal View History

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