ze-react-component-library
Version:
ZeroETP React Component Library
14 lines (13 loc) • 413 B
TypeScript
/// <reference types="react" />
import { EChartsOption } from "echarts";
import { LogicformAPIResultType } from "zeroetp-api-sdk";
export declare type ChartRepresentationProps = {
result: LogicformAPIResultType;
option?: EChartsOption;
targetPred?: string;
eventsDict?: Record<string, Function>;
style?: React.CSSProperties;
isMobile?: boolean;
height?: number;
title?: string;
};