chartist
Version:
Simple, responsive charts
11 lines • 440 B
TypeScript
import type { DataEvent, OptionsChangedEvent, DrawEvent, CreatedEvent } from '../core';
import type { AnimationEvent } from '../svg';
export interface BaseChartEventsTypes<TCreateEvent = CreatedEvent, TDrawEvents = DrawEvent> {
data: DataEvent;
options: OptionsChangedEvent;
animationBegin: AnimationEvent;
animationEnd: AnimationEvent;
created: TCreateEvent;
draw: TDrawEvents;
}
//# sourceMappingURL=types.d.ts.map