renameTimedOut type

This commit is contained in:
BeniBenj
2025-11-24 12:57:29 +01:00
parent 409c1cfa27
commit 3dfaf3db06
2 changed files with 2 additions and 2 deletions

View File

@@ -451,7 +451,7 @@ export class InlineCompletionsSource extends Disposable {
notShownReason: undefined,
renameCreated: false,
renameDuration: undefined,
renameTimedOut: undefined,
renameTimedOut: false,
};
const dataChannel = this._instantiationService.createInstance(DataChannelForwardingTelemetryService);

View File

@@ -41,7 +41,7 @@ export type InlineCompletionEndOfLifeEvent = {
notShownReason: string | undefined;
renameCreated: boolean;
renameDuration: number | undefined;
renameTimedOut: boolean | undefined;
renameTimedOut: boolean;
// rendering
viewKind: string | undefined;
cursorColumnDistance: number | undefined;