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).

22 lines 754 B
export interface Info { info?: AssetsInfo; responsive?: boolean; } export interface AssetsInfo { total_buy?: number | string; total_sell?: number | string; total_return?: number | string; total_return_rate?: number | string; avg_buy?: number | string; avg_sell?: number | string; avg_return?: number | string; avg_return_rate?: number | string; total_lending?: number | string; total_lending_interest?: number | string; total_open_interest?: number | string; total_open_interest_rate?: number | string; avg_open_interest?: number | string; avg_open_interest_rate?: number | string; } export default function Info(props: Info): import("react").JSX.Element; //# sourceMappingURL=Info.d.ts.map