@sussudio/platform
Version:
Internal APIs for VS Code's service injection the base services.
14 lines (12 loc) • 759 B
text/typescript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { IPtyService } from '../common/terminal.mjs';
export declare const ILocalPtyService: import('../../instantiation/common/instantiation.mjs').ServiceIdentifier<ILocalPtyService>;
/**
* A service responsible for communicating with the pty host process on Electron.
*
* **This service should only be used within the terminal component.**
*/
export interface ILocalPtyService extends IPtyService {}