import { createServiceIdentifier } from '../../../util/common/services';
export const IDebugOutputService = createServiceIdentifier<IDebugOutputService>('IDebugOutputService');
export interface IDebugOutputService {
readonly _serviceBrand: undefined;
consoleOutput: string;
}