UNPKG

msync

Version:

Easily manage building and syncing multiple node-modules in a flexibly defined workspace.

5 lines (4 loc) 287 B
import { IDependency, IModule } from '../types'; export declare const localDeps: (pkg: IModule) => IDependency[]; export declare const includeIgnored: (pkg: IModule | undefined, includeIgnored: boolean) => boolean; export declare function fileExists(paths: string[]): Promise<string[]>;