mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-01 01:21:44 +00:00
refactor(config): dedupe install and typing schema definitions
This commit is contained in:
14
src/config/types.installs.ts
Normal file
14
src/config/types.installs.ts
Normal 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;
|
||||
};
|
||||
Reference in New Issue
Block a user