react/src/hooks/usePricing/PriceOptions.ts

8 lines
152 B
TypeScript

export interface PriceOptions {
price: number
dtAmount: number
type: 'fixed' | 'dynamic' | string
weightOnDataToken: string
swapFee: string
}