workspace-tools
Version:
A collection of tools that are useful in a git-controlled monorepo that is managed by one of these software:
19 lines (18 loc) • 395 B
TypeScript
export declare type Dependencies = {
[key in string]: string;
};
export declare type LockDependency = {
version: string;
dependencies?: Dependencies;
};
export declare type ParsedLock = {
type: "success" | "merge" | "conflict";
object: {
[key in string]: LockDependency;
};
};
export interface PnpmLockFile {
packages: {
[name: string]: any;
};
}