local-npm-registry
Version:
Manages local npm package installations and updates across your machine.
25 lines • 861 B
TypeScript
/**
* Implements the 'local-npm unsubscribe [<package-name>]' command.
*/
export declare class UnsubscribeCommand {
/**
* Implements the 'local-npm unsubscribe [<package-name>]' command.
*
* @param packageName - Optional package name to unsubscribe from. If not provided, unsubscribes from all packages
*/
static execute(packageName?: string): Promise<void>;
/**
* Unsubscribes from a specific package.
*
* @param packageName - Name of the package to unsubscribe from
* @param currentProjectPath - Path to the current project
*/
private static unsubscribeFromSpecificPackage;
/**
* Unsubscribes from all packages.
*
* @param currentProjectPath - Path to the current project
*/
private static unsubscribeFromAllPackages;
}
//# sourceMappingURL=UnsubscribeCommand.d.ts.map