14 lines
299 B
TypeScript
14 lines
299 B
TypeScript
export interface MatchSessionOptions {
|
|
boardScale?: number
|
|
handScale?: number
|
|
width?: number
|
|
height?: number
|
|
background: string
|
|
teamed: boolean
|
|
winTarget: number
|
|
winType: 'points' | 'rounds'
|
|
seed: string
|
|
sessionName: string
|
|
numPlayers: 1 | 2 | 3 | 4
|
|
turnWaitSeconds: number
|
|
} |