echarts
Version:
Apache ECharts is a powerful, interactive charting and data visualization library for browser
12 lines (11 loc) • 459 B
TypeScript
import { Payload } from '../../util/types.js';
import { EChartsExtensionInstallRegisters } from '../../extension.js';
export interface TimelineChangePayload extends Payload {
type: 'timelineChange';
currentIndex: number;
}
export interface TimelinePlayChangePayload extends Payload {
type: 'timelinePlayChange';
playState: boolean;
}
export declare function installTimelineAction(registers: EChartsExtensionInstallRegisters): void;