Skip to content

Commit

Permalink
Don't export what's not used externally
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanregisser committed Aug 30, 2024
1 parent 75e4add commit 161cfee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ export enum MnemonicLanguages {
portuguese,
}

export type RandomNumberGenerator = (
type RandomNumberGenerator = (
size: number,
callback: (err: Error | null, buf: Buffer) => void
) => void

export interface Bip39 {
interface Bip39 {
mnemonicToSeed: (mnemonic: string, password?: string) => Promise<Uint8Array>
generateMnemonic: (
strength?: number,
Expand Down

0 comments on commit 161cfee

Please sign in to comment.