@steambrew/client
Version:
A support library for creating plugins with Millennium.
55 lines (47 loc) • 1.69 kB
text/typescript
import { EResult, Unregisterable } from './shared';
export interface Broadcast {
/**
* Approves a viewer request for the broadcast.
* @param steamId64 The SteamID64 of the user whose request is to be approved.
*/
ApproveViewerRequest(steamId64: string, param1: number): void;
/**
* Invites a user identified by their SteamID64 to watch the broadcast.
* @param steamId64 The SteamID64 of the user to invite.
*/
InviteToWatch(steamId64: string): Promise<EResult>;
/**
* Registers a callback to be called when the broadcast status changes.
* @param callback The callback function to be called.
* @returns an object that can be used to unregister the callback.
*/
RegisterForBroadcastStatus(callback: (status: BroadcastStatus) => void): Unregisterable;
/**
* Registers a callback to be called when viewer requests are received.
* @param callback The callback function to be called.
* @returns an object that can be used to unregister the callback.
*/
RegisterForViewerRequests(callback: (viewerFriendCode: number, param1: number, param2: number) => void): Unregisterable;
/**
* Rejects a viewer request for the broadcast.
* @param steamId64 The SteamID64 of the user whose request is to be rejected.
*/
RejectViewerRequest(steamId64: string, param1: number): void;
/**
* Stops the broadcast.
*/
StopBroadcasting(): void;
}
export interface BroadcastStatus {
broadcastid: string;
nViewers: number;
nRequests: number;
bIsBroadcasting: boolean;
bIsRecordingDesktop: boolean;
eBroadcastReady: EResult;
bBroadcastCapable: boolean;
bMicrophoneEnabled: boolean;
bMicrophoneActive: boolean;
nCurrentFPS: number;
nUploadKbps: number;
}