sussudio
Version:
An unofficial VS Code Internal API
35 lines (34 loc) • 1.87 kB
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
import { ProxyChannel } from "../../../base/parts/ipc/common/ipc.mjs";
import { IMainProcessService } from "../../ipc/electron-sandbox/services.mjs";
// @ts-ignore: interface is implemented via proxy
let NativeHostService = class NativeHostService {
windowId;
constructor(windowId, mainProcessService) {
this.windowId = windowId;
return ProxyChannel.toService(mainProcessService.getChannel('nativeHost'), {
context: windowId,
properties: (() => {
const properties = new Map();
properties.set('windowId', windowId);
return properties;
})()
});
}
};
NativeHostService = __decorate([
__param(1, IMainProcessService)
], NativeHostService);
export { NativeHostService };