@rongcloud/plugin-wechat-rtc
Version:
@rongcloud/plugin-wechat-rtc
15 lines • 590 B
TypeScript
import { RCRTCCode } from '../enums/RCRTCCode';
import { RCRemoteStream } from '../RCRemoteStream';
import { BaseCommand } from './BaseCommand';
import { RCCommandKind } from '../enums/RCCommandKind';
import { CommandExecuteContext } from './CommandExecuteContext';
export default class UnsubCommand extends BaseCommand {
private readonly _unsubStreams;
constructor(_unsubStreams: RCRemoteStream[]);
get kind(): RCCommandKind;
private _exchange;
execute(ctx: CommandExecuteContext): Promise<{
code: RCRTCCode;
}>;
}
//# sourceMappingURL=UnsubCommand.d.ts.map