UNPKG

@sussudio/platform

Version:

Internal APIs for VS Code's service injection the base services.

14 lines (12 loc) 691 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { ISharedProcessToWorkerMessage } from './sharedProcessWorker.mjs'; /** * The `create` function needs to be there by convention because * we are loaded via the `vs/base/worker/workerMain` utility. */ export declare function create(): { onmessage: (message: ISharedProcessToWorkerMessage, transfer?: Transferable[]) => void; };