write stubs

This commit is contained in:
2025-12-28 20:52:31 -05:00
parent 1c229f1b3e
commit 99c41a0d60
5 changed files with 1037 additions and 0 deletions

31
lsp/fes.lua Normal file
View File

@@ -0,0 +1,31 @@
---@meta
---@class Fes
---@field version string|nil
---@field title string|nil
---@field copyright string|nil
---@field favicon string|nil
---@field header string
---@field footer string
---@field parts string[]
---@field [string] fun(self: Fes, ...: any): Fes
local Fes = {}
Fes.__index = Fes
---@param header? string
---@param footer? string
---@return Fes
function Fes.fes(header, footer) end
---@param html string
---@return Fes
function Fes:custom(html) end
---@return string
function Fes:build() end
---@return string
function Fes:__tostring() end
return Fes