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