@zegocloud/zego-uikit-prebuilt-call-mini-program
Version:
zegocloud prebuilt meeting rtc sdk
10 lines (9 loc) • 716 B
TypeScript
import { PlayConfig, PushConfig } from "../defines";
import { ZegoExpressEvent } from "./ZegoExpressEvent";
import { ZegoWxPublishOption } from "zego-express-engine-miniprogram/sdk/code/zh/ZegoExpressEntity.wechat";
export declare function startPush(pushStreamID: string, publishOption?: ZegoWxPublishOption | undefined): Promise<PushConfig | false>;
export declare function stopPush(pushStreamID: string): void;
export declare function startPlay(streamID: string): Promise<PlayConfig | false>;
export declare function stopPlay(streamID: string): boolean;
export declare function bindEventListeners(listeners: ZegoExpressEvent): void;
export declare function unbindEventListeners(listeners: ZegoExpressEvent): void;