mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-12 21:50:42 +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;
|
|
};
|