UNPKG

205 BTypeScriptView Raw
1/**
2 * Get the packages that depend on a given package, recursively.
3 */
4export declare function getDeps(pkgName: string, lut: {
5 [key: string]: {
6 [key: string]: string;
7 };
8}): Set<string>;