@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).
21 lines • 524 B
TypeScript
import type { Farm, FarmRecent } from "../../../../types";
export interface Detail {
farm: Farm;
info?: any;
charts?: {
apr?: {
value: number;
time: string;
}[];
staking?: {
value: number;
time: string;
type?: string;
}[];
};
recent?: FarmRecent[];
responsive?: boolean;
onBack?: Function;
}
export default function Detail(props: Detail): import("react").JSX.Element;
//# sourceMappingURL=Detail.d.ts.map