export interface OpenServiceParams { host: string; port: number; scene: string; onClose?: () => {}; containerId?: string; } declare class Service { static hubLink: string; static openService: (params: OpenServiceParams) => Promise; static initScene: () => Promise; static closeService: () => Promise; /** * 设置键鼠事件发送 */ static setMouseEventStatus: (status: boolean) => void; static debuggerMode: () => void; static recordTrack: () => void; static pureMode: () => void; static lastData: any; static getWebRTCState: () => Promise; static getSystemInfo: () => any; static setScreenMode: (params: { splitScreen: boolean; mode?: number; viewSync?: boolean; }) => Promise; } export default Service;