UNPKG

@gameye/sdk

Version:
12 lines (11 loc) 362 B
/// <reference types="node" /> import * as models from "../models"; import { GameyeClient } from "./gameye"; /** * Fetch the game state */ export declare function queryGame(this: GameyeClient): Promise<models.GameQueryState>; /** * Subscribe to the game state */ export declare function subscribeGame(this: GameyeClient): Promise<import("stream").Readable>;