mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
9 lines
254 B
TypeScript
9 lines
254 B
TypeScript
declare module 'slip39' {
|
|
export function recoverSecret(secret: string[], passphrase?: string): Buffer;
|
|
export function validateMnemonic(mnemonic: string): boolean;
|
|
}
|
|
|
|
declare module 'slip39/src/slip39_helper' {
|
|
export const WORD_LIST: string[];
|
|
}
|