mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-11 05:44:33 +00:00
fix: tighten command arg value types
This commit is contained in:
@@ -28,7 +28,8 @@ export type CommandArgMenuSpec = {
|
||||
title?: string;
|
||||
};
|
||||
|
||||
export type CommandArgValues = Record<string, unknown>;
|
||||
export type CommandArgValue = string | number | boolean | bigint;
|
||||
export type CommandArgValues = Record<string, CommandArgValue>;
|
||||
|
||||
export type CommandArgs = {
|
||||
raw?: string;
|
||||
|
||||
Reference in New Issue
Block a user