1 | import * as graphlib from '../graphlib';
|
2 | import * as types from './types';
|
3 | export declare function validateGraph(graph: graphlib.Graph, rootNodeId: string, pkgs: {
|
4 | [pkgId: string]: any;
|
5 | }, pkgNodes: {
|
6 | [nodeId: string]: Set<string>;
|
7 | }): void;
|
8 | export declare function validatePackageURL(pkg: types.PkgInfo): void;
|