gunshi / default / Commandable
Type Alias: Commandable<G>
ts
type Commandable<G> =
| Command<G>
| LazyCommand<G, {
}>;Define a command type.
Type Parameters
| Type Parameter | Default type | Description |
|---|---|---|
G extends GunshiParamsConstraint | DefaultGunshiParams | A type extending GunshiParams to specify the shape of command. |
