import { IModel } from "./client.type"; import { TemplateModel } from "./enum.type"; /** * SDK类型,当前分:主SDK、Slave SDK */ export declare enum SDKType { MAIN = "MAIN_SDK", SLAVE = "SLAVE_SDK" } export interface ISlaveConfig { model?: IModel; muteAudio?: boolean; muteVideo?: boolean; templateModel?: TemplateModel; logPath?: string; dllPath?: string; path?: string; sdkDllPath?: string; sdkProjectPath?: string; container?: { elementId?: string; offset?: number[]; }; }