mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 15:20:55 +01:00
8 lines
255 B
TypeScript
8 lines
255 B
TypeScript
declare module 'slip39' {
|
|
export function recoverSecret(secret: string[], passphrase?: string): Buffer;
|
|
export function validateMnemonic(mnemonic: string): boolean;
|
|
}
|
|
|
|
declare module 'slip39/dist/slip39_helper' {
|
|
export const WORD_LIST: string[];
|
|
}
|