From bc71716064f4b1f6924240be4d36c2ff34512551 Mon Sep 17 00:00:00 2001 From: Jackson Chen <541898146chen@gmail.com> Date: Sun, 5 Jan 2025 23:34:54 -0500 Subject: [PATCH] refactor(api): remove unused SymbolKind enum from ChatCommand interface --- clients/tabby-chat-panel/src/index.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/clients/tabby-chat-panel/src/index.ts b/clients/tabby-chat-panel/src/index.ts index 3c0ddfba588d..59572c62f9ac 100644 --- a/clients/tabby-chat-panel/src/index.ts +++ b/clients/tabby-chat-panel/src/index.ts @@ -211,16 +211,6 @@ export interface GitRepository { */ export type ChatCommand = 'explain' | 'fix' | 'generate-docs' | 'generate-tests' -/** - * A symbol kind from vscode standard - */ -export enum SymbolKind { - /** - * The `File` symbol kind. - */ - File = 0, -} - /** * Represents a file reference (file path plus an optional 1-based line range) for retrieving file content. * If `range` is not provided, the entire file is considered.