UNPKG

330 BTypeScriptView Raw
1import { DepGraph } from './types';
2/**
3 * Creates an induced subgraph of {@param graphB} with only packages
4 * that are not present in {@param graphA} or have a different version.
5 *
6 * @param graphA
7 * @param graphB
8 */
9export declare function createChangedPackagesGraph(graphA: DepGraph, graphB: DepGraph): Promise<DepGraph>;