Skip to content

Commit

Permalink
fix(quote): amounts should be type string (#10)
Browse files Browse the repository at this point in the history
Co-authored-by: jh2oman <jacobwaterman@MacBook-Pro.local>
  • Loading branch information
jh2oman and jh2oman committed Mar 14, 2022
1 parent bf8d535 commit ec1e60f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/index.ts
Expand Up @@ -44,10 +44,10 @@ export type QuoteResponse = {

export type QuoteErrorResponse = {
error: FiatConnectError
minimumFiatAmount?: number
maximumFiatAmount?: number
minimumCryptoAmount?: number
maximumCryptoAmount?: number
minimumFiatAmount?: string
maximumFiatAmount?: string
minimumCryptoAmount?: string
maximumCryptoAmount?: string
}

// Helper type
Expand Down

0 comments on commit ec1e60f

Please sign in to comment.