UNPKG

@pureweb/platform-streaming-agent

Version:

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

9 lines (8 loc) 297 B
import { AbstractExtension } from '../../IExtension'; import { SidecarService } from './SidecarService'; export declare class SidecarExtension extends AbstractExtension { sidecarService: SidecarService; constructor(); start: () => Promise<boolean>; stop: () => Promise<boolean>; }