Skip to content

Commit

Permalink
fix: add types manually
Browse files Browse the repository at this point in the history
  • Loading branch information
kewde committed Nov 27, 2024
1 parent c7de982 commit 2c53d9f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions features/keychain/api/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export interface KeychainApi {
exportKey(params: KeySource): Promise<PublicKeys>
exportKey(params: { exportPrivate: false } & KeySource): Promise<PublicKeys>
exportKey(params: { exportPrivate: true } & KeySource): Promise<PublicKeys & PrivateKeys>
exportKey(params: { exportPrivate: true, exportPublic: false } & KeySource): Promise<PrivateKeys>
arePrivateKeysLocked(seeds: Buffer[]): boolean
removeSeeds(seeds: Buffer[]): string[]
sodium: {
Expand Down

0 comments on commit 2c53d9f

Please sign in to comment.