lang-ko.d.ts 701 B

12345678910111213141516171819202122232425
  1. import { Wordlist } from "./wordlist.js";
  2. /**
  3. * The [[link-bip39-ko]] for [mnemonic phrases](link-bip-39).
  4. *
  5. * @_docloc: api/wordlists
  6. */
  7. export declare class LangKo extends Wordlist {
  8. /**
  9. * Creates a new instance of the Korean language Wordlist.
  10. *
  11. * This should be unnecessary most of the time as the exported
  12. * [[langKo]] should suffice.
  13. *
  14. * @_ignore:
  15. */
  16. constructor();
  17. getWord(index: number): string;
  18. getWordIndex(word: string): number;
  19. /**
  20. * Returns a singleton instance of a ``LangKo``, creating it
  21. * if this is the first time being called.
  22. */
  23. static wordlist(): LangKo;
  24. }
  25. //# sourceMappingURL=lang-ko.d.ts.map