wykrestest
Version:
Candlestick Chart made with Konva, React and Jotai
17 lines (16 loc) • 320 B
TypeScript
import { IHighLow, IDims } from '../utils/types';
export interface IPriceArray {
data: IPriceItem[];
toggle: boolean;
}
export interface IPriceItem {
price: number;
text: string;
pixel: number;
}
export interface IPrice {
dataHL: IHighLow;
winHL: IHighLow;
dims: IDims;
xx: number;
}