@visactor/vtable-gantt
Version:
canvas table width high performance
11 lines (10 loc) • 315 B
TypeScript
import type { EVENT_TYPES } from '../ts-types/EVENT_TYPE';
import type { Gantt } from '../Gantt.ts';
export interface IGanttPlugin {
id: string;
name: string;
runTime?: EVENT_TYPES[keyof EVENT_TYPES][];
run: (...args: any[]) => void;
update?: () => void;
release?: (gantt: Gantt) => void;
}