mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-01 09:03:35 +00:00
10 lines
375 B
TypeScript
10 lines
375 B
TypeScript
// Defines plugin install security scan result types.
|
|
import type { OpenClawConfig } from "../config/types.openclaw.js";
|
|
|
|
/** Overrides that intentionally loosen install safety policy for trusted/operator paths. */
|
|
export type InstallSafetyOverrides = {
|
|
config?: OpenClawConfig;
|
|
dangerouslyForceUnsafeInstall?: boolean;
|
|
trustedSourceLinkedOfficialInstall?: boolean;
|
|
};
|