1 | import { DepGraph, DepGraphData } from './types';
|
2 | export declare const SUPPORTED_SCHEMA_RANGE = "^1.0.0";
|
3 | /**
|
4 | * Create a DepGraph instance from a JSON representation of a dep graph. This
|
5 | * is typically used after passing the graph over the wire as `DepGraphData`.
|
6 | */
|
7 | export declare function createFromJSON(depGraphData: DepGraphData): DepGraph;
|