@my-swu/simulator-client / LimitedEventCommand
Type Alias: LimitedEventCommand
LimitedEventCommand =
LimitedEventCommandRequest["command"]
Defined in: packages/ts-sdk/src/resources/limited-events.ts:55
Player command accepted by one Limited Event seat.
Commands drive hidden draft picks, leader choices, and ready gates.
Example:
ts
import type { LimitedEventCommand } from '@my-swu/simulator-client'
const readyForNextDraftCommand = { type: 'readyForNextDraft' } satisfies LimitedEventCommand
console.log(readyForNextDraftCommand)Example
ts
import type { LimitedEventCommand } from '@my-swu/simulator-client'
const readyForNextDraft: LimitedEventCommand = {
type: 'readyForNextDraft',
}
console.log(readyForNextDraft.type)