@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).
34 lines • 832 B
TypeScript
export interface Candle {
color?: {
up?: string;
down?: string;
theme?: string;
};
field?: {
time?: string;
value?: string;
};
price?: Price[];
volume?: Volume[];
up?: string;
down?: string;
fallback?: any;
style?: any;
fit?: boolean;
}
export interface Price {
time: number | string;
open: number | string;
high: number | string;
low: number | string;
close: number | string;
}
export interface Volume {
time: number | string;
value: number | string;
type?: string;
}
export declare const Candle: (props: Candle) => import("react").JSX.Element;
declare const _default: import("react").MemoExoticComponent<(props: Candle) => import("react").JSX.Element>;
export default _default;
//# sourceMappingURL=Candle.d.ts.map