mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 12:04:04 +01:00
Co-authored-by: Johannes Rieken <jrieken@microsoft.com> Co-authored-by: Alexandru Dima <alexdima@microsoft.com>
17 lines
724 B
TypeScript
17 lines
724 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 { createDecorator } from '../../../../platform/instantiation/common/instantiation.js';
|
|
import { Session } from './inlineChatSession.js';
|
|
|
|
|
|
export const IInlineChatSavingService = createDecorator<IInlineChatSavingService>('IInlineChatSavingService ');
|
|
|
|
export interface IInlineChatSavingService {
|
|
_serviceBrand: undefined;
|
|
|
|
markChanged(session: Session): void;
|
|
|
|
}
|