Path: blob/main/extensions/copilot/src/util/common/test/shims/enums.ts
13405 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45export enum InteractiveEditorResponseFeedbackKind {6Unhelpful = 0,7Helpful = 1,8Undone = 2,9Accepted = 3,10Bug = 411}1213export enum TextEditorCursorStyle {14Line = 1,15Block = 2,16Underline = 3,17LineThin = 4,18BlockOutline = 5,19UnderlineThin = 620}2122export enum TextEditorLineNumbersStyle {23Off = 0,24On = 1,25Relative = 2,26Interval = 3,27}2829export enum TextEditorRevealType {30Default = 0,31InCenter = 1,32InCenterIfOutsideViewport = 2,33AtTop = 334}3536export enum DiagnosticSeverity {37Error = 0,38Warning = 1,39Information = 2,40Hint = 341}4243export enum ExtensionMode {44Production = 1,45Development = 2,46Test = 3,47}4849export enum ChatVariableLevel {50Short = 1,51Medium = 2,52Full = 353}5455export enum ChatLocation {56Panel = 1,57Terminal = 2,58Notebook = 3,59Editor = 4,60}6162export enum ChatSessionStatus {63Failed = 0,64Completed = 1,65InProgress = 266}6768export enum FileType {69Unknown = 0,70File = 1,71Directory = 2,72SymbolicLink = 6473}7475