@tf2pickup-org/serveme-tf-client
Version:
A serveme.tf API client
16 lines (15 loc) • 452 B
TypeScript
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;
}