import { createServiceIdentifier } from '../../../util/common/services';
import { Event } from '../../../util/vs/base/common/event';
export const IChatSessionService = createServiceIdentifier<IChatSessionService>('IChatSessionService');
export interface IChatSessionService {
readonly _serviceBrand: undefined;
onDidDisposeChatSession: Event<string>;
}