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