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

18 lines 496 B
import { Tick } from "./Tick"; export interface Orderbook { asks?: Tick[]; bids?: Tick[]; view?: number; base?: string; quote?: string; onClickAsk?: Function; onClickBid?: Function; bookOrder?: boolean; responsive?: { device: "desktop" | "laptop" | "tablet" | "mobile"; vertical?: boolean; }; guidance?: boolean; } export default function Ordrebook(props: Orderbook): import("react").JSX.Element; //# sourceMappingURL=Orderbook.d.ts.map