Add more Machine API capabilities (#4203)

This commit is contained in:
Pierre Jacquier
2024-10-18 07:25:54 -07:00
committed by GitHub
parent 11d9a2ee00
commit 5332ddd88e
7 changed files with 43 additions and 12 deletions

View File

@ -258,5 +258,6 @@ export type CommandArgumentWithName<
export type CommandArgumentOption<A> = {
name: string
isCurrent?: boolean
disabled?: boolean
value: A
}