Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
raducristianpopa committed Sep 13, 2024
1 parent 0d5eee6 commit f1a1a91
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/wallet/frontend/src/lib/api/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,12 @@ type ChangePasswordResponse = SuccessResponse | ChangePasswordError

type GetGateHubIframeSrcArgs = z.infer<typeof getIframeSrcSchema>
type GetGateHubIframeSrcResult = SuccessResponse<{ url: string }>
type GetGateHubIframeSrcError= ErrorResponse<GetGateHubIframeSrcArgs | undefined>
type GetGateHubIframeSrcResponse = GetGateHubIframeSrcResult | GetGateHubIframeSrcError
type GetGateHubIframeSrcError = ErrorResponse<
GetGateHubIframeSrcArgs | undefined
>
type GetGateHubIframeSrcResponse =
| GetGateHubIframeSrcResult
| GetGateHubIframeSrcError

interface UserService {
signUp: (args: SignUpArgs) => Promise<SignUpResponse>
Expand Down

0 comments on commit f1a1a91

Please sign in to comment.