lerna
Version:
Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository
14 lines (13 loc) • 525 B
TypeScript
import { Arguments, Command, CommandConfigOptions } from "@lerna/core";
export declare function factory(argv: Arguments<CommandConfigOptions>): RepairCommand;
export declare class RepairCommand extends Command {
constructor(argv: Arguments<CommandConfigOptions>);
initialize(): void;
execute(): Promise<void>;
configureNxOutput(): any;
}
declare const commonJsExport: typeof factory & {
RepairCommand: typeof RepairCommand;
};
export default commonJsExport;
export { commonJsExport as "module.exports" };