Files
vscode/extensions/copilot/src/platform/debug/common/debugOutputService.ts
T
kieferrm 333d9a4053 Hello Copilot
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
2025-06-27 11:35:20 +02:00

15 lines
634 B
TypeScript

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { createServiceIdentifier } from '../../../util/common/services';
export const IDebugOutputService = createServiceIdentifier<IDebugOutputService>('IDebugOutputService');
export interface IDebugOutputService {
readonly _serviceBrand: undefined;
consoleOutput: string;
}