Files
openclaw/src/auto-reply/commands-args.types.ts
2026-04-10 15:14:27 +01:00

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;
};