UNPKG

@pureweb/platform-streaming-agent

Version:

The PureWeb platform streaming agent enables your game to communicate and stream through the PureWeb Platform

10 lines (9 loc) 331 B
import { AbstractExtension } from '../../IExtension'; import { SignallingService } from './SignallingService'; export declare class StreamExtension extends AbstractExtension { signallingService: SignallingService; constructor(); start: () => Promise<boolean>; reconnect(): void; stop: () => Promise<boolean>; }