@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).
12 lines • 338 B
TypeScript
export interface History {
data?: MarketHistory[];
view?: number;
}
export interface MarketHistory {
time: number | string;
type: "buy" | "sell";
price: number | string;
quantity: number | string;
}
export default function History(props: History): import("react").JSX.Element;
//# sourceMappingURL=History.d.ts.map