lang-en.d.ts 636 B

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