feat: add type annotations for modules

This commit is contained in:
Lewis Russell 2024-11-14 17:25:54 +00:00
parent 9521fe8be3
commit ac5aba6dce
4 changed files with 8 additions and 1 deletions

View File

@ -7,6 +7,7 @@ local config = Config.config
local api = vim.api
local uv = vim.uv or vim.loop
--- @class gitsigns.main
local M = {}
local cwd_watcher ---@type uv.uv_fs_event_t?
@ -222,7 +223,8 @@ function M.setup(cfg)
setup_cwd_head()
end
return setmetatable(M, {
--- @type gitsigns.main|gitsigns.actions|gitsigns.attach|gitsigns.debug
M = setmetatable(M, {
__index = function(_, f)
local attach = require('gitsigns.attach')
if attach[f] then
@ -242,3 +244,5 @@ return setmetatable(M, {
end
end,
})
return M

View File

@ -14,6 +14,7 @@ local cache = require('gitsigns.cache').cache
local api = vim.api
local current_buf = api.nvim_get_current_buf
--- @class gitsigns.actions
local M = {}
--- @class Gitsigns.CmdParams.Smods

View File

@ -15,6 +15,7 @@ local throttle_by_id = require('gitsigns.debounce').throttle_by_id
local api = vim.api
local uv = vim.loop
--- @class gitsigns.attach
local M = {}
--- @param name string

View File

@ -1,5 +1,6 @@
local log = require('gitsigns.debug.log')
--- @class gitsigns.debug
local M = {}
--- @param raw_item any