UNPKG

@coinmeca/ui

Version:

This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

25 lines 697 B
import type { Asset } from "../../../../../types"; export interface TradeControl { mode: boolean; assets: Asset[]; price: number | string; ratio?: number | string; require?: number | string; locked?: number | string; weight?: number | string; need?: number | string; fee?: number | string; onChange?: Function; responsive?: number; } export interface Order { buy: string; sell: string; category?: number; price: number | string; amount?: number | string; quantity?: number | string; fees?: number | string; } export default function Trade(props: TradeControl): import("react").JSX.Element; //# sourceMappingURL=Trade.d.ts.map