UNPKG

@mixer/interactive-node

Version:

A NodeJS and Browser compatible client for mixer.com's interactive 2 Protocol

17 lines (16 loc) 549 B
export * from './state/interfaces'; export * from './state/Scene'; export * from './state/Group'; export * from './IClient'; export * from './GameClient'; export * from './ParticipantClient'; export * from './constants'; export * from './errors'; export * from './util'; /** * This allows you to specify which WebSocket implementation your * environment is using. You do not need to do this in Browser environments. * * @example `Interactive.setWebsocket(require('ws'));` */ export declare function setWebSocket(ws: any): void;