You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/libloki/modules/mnemonic.d.ts

7 lines
237 B
TypeScript

export interface RecoveryPhraseUtil {
mn_encode(str: string, wordset_name: string): string;
mn_decode(str: string, wordset_name: string): string;
get_languages(): Array<string>;
pubkey_to_secret_words(pubKey?: string): string;
}