mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 12:50:42 +00:00
11 lines
226 B
TypeScript
11 lines
226 B
TypeScript
export type ExecAllowlistEntry = {
|
|
id?: string;
|
|
pattern: string;
|
|
source?: "allow-always";
|
|
commandText?: string;
|
|
argPattern?: string;
|
|
lastUsedAt?: number;
|
|
lastUsedCommand?: string;
|
|
lastResolvedPath?: string;
|
|
};
|