export type CommandArgValue = string | number | boolean | bigint; export type CommandArgValues = Record; export type CommandArgs = { raw?: string; values?: CommandArgValues; };