dotfiles from arch

This commit is contained in:
2025-09-28 11:39:12 +02:00
parent 75885729cd
commit d1c6923bbb
1358 changed files with 575835 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
---@meta
---@class bee.filewatch.instance
local instance = {}
---@param path string
function instance:add(path)
end
---@param enable boolean
---@return boolean
function instance:set_recursive(enable)
end
---@param enable boolean
---@return boolean
function instance:set_follow_symlinks(enable)
end
---@param callback? fun(path: string):boolean
---@return boolean
function instance:set_filter(callback)
end
---@class bee.filewatch
local fw = {}
---@return bee.filewatch.instance
function fw.create()
end
return fw