@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).
27 lines • 635 B
TypeScript
import type { Farm, Token, Vault } from "../../types";
export interface Detail {
asset?: Token;
vault?: Vault & {
info?: any;
recent?: any;
charts?: {
rate: any;
value: any;
volume: any;
};
[x: string]: any;
};
farm?: Farm & {
info?: any;
recent?: any;
charts?: {
apr: any;
staking: any;
};
[x: string]: any;
};
onBack?: Function;
responsive?: boolean;
}
export default function Detail(props: Detail): import("react").JSX.Element;
//# sourceMappingURL=Detail.d.ts.map