@gameye/sdk
Version:
Node.js SDK for Gameye
12 lines (11 loc) • 362 B
TypeScript
/// <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>;