refactor(config): dedupe install and typing schema definitions

This commit is contained in:
Peter Steinberger
2026-02-22 21:18:19 +00:00
parent 4bf67ab698
commit e029f78447
9 changed files with 87 additions and 65 deletions

View File

@@ -0,0 +1,14 @@
export type InstallRecordBase = {
source: "npm" | "archive" | "path";
spec?: string;
sourcePath?: string;
installPath?: string;
version?: string;
resolvedName?: string;
resolvedVersion?: string;
resolvedSpec?: string;
integrity?: string;
shasum?: string;
resolvedAt?: string;
installedAt?: string;
};