install-module-linked
Version:
Installs and symlinks a module into node_modules
10 lines (9 loc) • 380 B
TypeScript
export interface CleanOptions {
slient?: boolean;
}
export type GetScopedSpecifiedCallback = (err?: Error | null, installSpecifier?: string) => void;
export type EnsureCachedCallback = (err?: Error | null, cachedAt?: string) => void;
export type InstallCallback = (err?: Error | null, installedAt?: string) => void;
export interface InstallOptions {
cachePath?: string;
}