@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).
26 lines • 713 B
TypeScript
import type { Price, Volume } from "../../../../components/charts/lightweight/Candle";
import type { Token, VaultRecent } from "../../../../types";
export interface Detail {
asset: Token;
info?: any;
charts?: {
volume?: {
value: number;
time: number | string;
type?: string;
}[];
value?: {
value: number;
time: string;
}[];
rate?: {
price: Price[];
volume?: Volume[];
};
};
recent?: VaultRecent[];
responsive?: boolean;
onBack?: Function;
}
export default function Detail(props: Detail): import("react").JSX.Element;
//# sourceMappingURL=Detail.d.ts.map