UNPKG

ngx-agora-sdk-ng

Version:

<div style="display:flex"> <img src="docs/images/angular-logo.svg" width="50px" height="50px" alt="Angular"/> <img src="docs/images/agora-logo.png" width="50px" height="50px" alt="Agora"/> </div>

15 lines 568 B
import { ClientRole, CODEC, IRemoteAudioTrack, IRemoteVideoTrack, MODE } from './types'; export declare class AgoraConfig { AppID: string; Video?: { codec: CODEC; mode: MODE; role: ClientRole; }; } export interface IChannelClient { joinVideo(channel: string, token: string | null, uid?: string | number | null): Promise<IRemoteVideoTrack>; joinVoice(channel: string, token: string | null, uid?: string | number | null): Promise<IRemoteAudioTrack>; leaveVideo(): Promise<any>; } //# sourceMappingURL=agora-config.d.ts.map