From f2853cb0bea6593e8e51dccdec69987cd08e923f Mon Sep 17 00:00:00 2001 From: Tomas Slusny Date: Sat, 16 Nov 2024 23:02:16 +0100 Subject: [PATCH] Remove private fields from chat class type definition These fields are not meant to be used from outside so dont expose them. Signed-off-by: Tomas Slusny --- lua/CopilotChat/chat.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/lua/CopilotChat/chat.lua b/lua/CopilotChat/chat.lua index 7757d3c7..97b18615 100644 --- a/lua/CopilotChat/chat.lua +++ b/lua/CopilotChat/chat.lua @@ -1,8 +1,6 @@ ---@class CopilotChat.Chat ---@field bufnr number ---@field winnr number ----@field separator string ----@field spinner CopilotChat.Spinner ---@field valid fun(self: CopilotChat.Chat) ---@field visible fun(self: CopilotChat.Chat) ---@field active fun(self: CopilotChat.Chat)