UNPKG

330 BTypeScriptView Raw
1import { Lazy } from "lazy-val";
2export declare function createLazyProductionDeps(projectDir: string, excludedDependencies: Array<string> | null): Lazy<any[]>;
3export interface NodeModuleDirInfo {
4 readonly dir: string;
5 readonly deps: Array<NodeModuleInfo>;
6}
7export interface NodeModuleInfo {
8 readonly name: string;
9}