mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-26 00:21:59 +00:00
8 lines
207 B
TypeScript
8 lines
207 B
TypeScript
export type CommandArgValue = string | number | boolean | bigint;
|
|
export type CommandArgValues = Record<string, CommandArgValue>;
|
|
|
|
export type CommandArgs = {
|
|
raw?: string;
|
|
values?: CommandArgValues;
|
|
};
|