vega-lite
Version:
Vega-Lite is a concise high-level language for interactive visualization.
14 lines • 579 B
TypeScript
import { DataComponent } from './index.js';
import { Model } from '../model.js';
import { DataFlowNode } from './dataflow.js';
export declare const FACET_SCALE_PREFIX = "scale_";
export declare const MAX_OPTIMIZATION_RUNS = 5;
/**
* Iterates over a dataflow graph and checks whether all links are consistent.
*/
export declare function checkLinks(nodes: readonly DataFlowNode[]): boolean;
/**
* Optimizes the dataflow of the passed in data component.
*/
export declare function optimizeDataflow(data: DataComponent, model: Model): void;
//# sourceMappingURL=optimize.d.ts.map