echarts-bus
Version:
魔改的Echarts,具有同时切换主题的功能
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;