UNPKG

rp-data-chart

Version:

Rabbitpre data-chart components lib

30 lines (29 loc) 804 B
/** * 分享率图表类 * @author lifu * @since 2019-5-14 */ import { Component } from 'react'; import { ChartProps } from "../../index"; import './share-path.less'; interface IState { data: Record<string, any> | null; } export declare class SharePathSource extends Component<ChartProps, IState> { state: IState; componentDidMount(): void; init(): Promise<void>; render(): JSX.Element; } declare const _default: { new (opt: import("../..").ChartOptions): { appId: string; pfId: string; container: HTMLElement | null; isLoading: boolean; init(): void; refresh(callback?: (() => void) | undefined): void; destroy(callback?: (() => void) | undefined): void; }; }; export default _default;