@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).
15 lines • 394 B
TypeScript
import { Vault as Asset, Farm } from "../../types";
export interface List {
assets?: Asset[];
farms?: Farm[];
page?: "vault" | "farm";
charts?: {
value?: any;
volume?: any;
};
responsive?: boolean;
onPage?: Function;
onSelect?: Function;
}
export default function List(props: List): import("react").JSX.Element;
//# sourceMappingURL=List.d.ts.map