2022-09-30 05:39:11 +00:00

10 lines
330 B
TypeScript

import { Lazy } from "lazy-val";
export declare function createLazyProductionDeps(projectDir: string, excludedDependencies: Array<string> | null): Lazy<any[]>;
export interface NodeModuleDirInfo {
readonly dir: string;
readonly deps: Array<NodeModuleInfo>;
}
export interface NodeModuleInfo {
readonly name: string;
}