UNPKG

@tf2pickup-org/serveme-tf-client

Version:
16 lines (15 loc) 452 B
import { ServerConfigId } from './server-config-option'; import { ServerId } from './server-option'; import { WhitelistId } from './whitelist-option'; export interface CreateReservationOptions { serverId: ServerId; startsAt?: Date; endsAt?: Date; rcon?: string; password?: string; serverConfigId?: ServerConfigId; whitelistId?: WhitelistId; enablePlugins?: boolean; enableDemosTf?: boolean; firstMap?: string; }