lerna
Version:
Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository
13 lines (12 loc) • 414 B
TypeScript
export declare function checkWorkingTree({ cwd }?: {
cwd?: string | URL;
}): Promise<void>;
export declare function throwIfReleased({ refCount }: {
refCount: any;
}): void;
export declare function mkThrowIfUncommitted(options?: {}): (opts: {
isDirty?: boolean;
}) => Promise<never> | undefined;
export declare const throwIfUncommitted: (opts: {
isDirty?: boolean;
}) => Promise<never> | undefined;