Skip to content

Commit

Permalink
fix setauthfn / setuserfn types (#3502)
Browse files Browse the repository at this point in the history
Co-authored-by: Nikki Kang <kangaroo233@gmail.com>
  • Loading branch information
nicoback2 and nicoback authored Jul 19, 2022
1 parent b6e3740 commit fbf31bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/types/@audius-hedgehog/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ declare module '@audius/hedgehog' {
iv: string
cipherText: string
lookupKey: string
}) => void | Promise<void>
}) => any | Promise<any>

type SetUserFn = (params: {
walletAddress: string
username: string
}) => void | Promise<void>
}) => any | Promise<any>

export class Hedgehog {
wallet: Wallet
Expand Down

0 comments on commit fbf31bb

Please sign in to comment.