UNPKG

steam-server-query

Version:

Module which implements the Master Server Query Protocol and Game Server Queries.

39 lines (38 loc) 795 B
export declare enum REGIONS { 'US_EAST_COAST' = 0, 'US_WEST_COAST' = 1, 'SOUTH_AMERICA' = 2, 'EUROPE' = 3, 'ASIA' = 4, 'AUSTRALIA' = 5, 'MIDDLE_EAST' = 6, 'AFRICA' = 7, 'ALL' = 255 } export interface Filter extends BasicFilter { nor?: BasicFilter; nand?: BasicFilter; } interface BasicFilter { dedicated?: 1; secure?: 1; gamedir?: string; map?: string; linux?: 1; password?: 0; empty?: 1; full?: 1; proxy?: 1; appid?: number; napp?: number; noplayers?: 1; white?: 1; gametype?: string[]; gamedata?: string[]; gamedataor?: string[]; name_match?: string; version_match?: string; collapse_addr_hash?: 1; gameaddr?: string; } export {};