pddl-gantt
Version:
Plan visualization for AI-Planning plans. The package includes HTML components for Gantt, swimlane and line plot visualization of plan originating from AI Planning solvers.
10 lines (9 loc) • 365 B
TypeScript
/**
* Tests whether _any_ portion of the el is visible.
* @param el HTML element
*/
export declare function isInViewport(el: HTMLElement): boolean;
export declare function drawChart(chartDiv: HTMLDivElement, functionName: string, unit: string, objects: string[], columnData: (number | null)[][]): void;
export interface ErrorWithMessage {
message: string;
}