@rongcloud/plugin-wechat-rtc
Version:
@rongcloud/plugin-wechat-rtc
51 lines • 1.06 kB
TypeScript
import { EventEmitter, ILogger, IRuntime } from '@rongcloud/engine';
import Store from '../store';
import RCMediaService from '../service/RCMediaService';
import { RTCContext } from '../codec/RTCContext';
/**
* 命令执行上下文
*/
export declare class CommandExecuteContext extends EventEmitter {
/**
* 日志工具
*/
readonly logger: ILogger;
/**
* IM 信令上下文
*/
readonly context: RTCContext;
/**
* 运行时
*/
readonly runtime: IRuntime;
/**
* 内存只读模块
*/
readonly store: Store;
/**
* RTC Service 请求工具
*/
readonly service: RCMediaService;
constructor(
/**
* 日志工具
*/
logger: ILogger,
/**
* IM 信令上下文
*/
context: RTCContext,
/**
* 运行时
*/
runtime: IRuntime,
/**
* 内存只读模块
*/
store: Store,
/**
* RTC Service 请求工具
*/
service: RCMediaService);
}
//# sourceMappingURL=CommandExecuteContext.d.ts.map