Files
openclaw/src/config/types.installs.ts
2026-03-22 17:03:49 +00:00

19 lines
495 B
TypeScript

export type InstallRecordBase = {
source: "npm" | "archive" | "path" | "clawhub";
spec?: string;
sourcePath?: string;
installPath?: string;
version?: string;
resolvedName?: string;
resolvedVersion?: string;
resolvedSpec?: string;
integrity?: string;
shasum?: string;
resolvedAt?: string;
installedAt?: string;
clawhubUrl?: string;
clawhubPackage?: string;
clawhubFamily?: "code-plugin" | "bundle-plugin";
clawhubChannel?: "official" | "community" | "private";
};