Files
fes/lsp/symbol.lua
2025-12-28 20:52:31 -05:00

21 lines
220 B
Lua

---@meta
---@class FesSymbol
local M = {}
--@type string
--@readonly
M.copyright = "©"
--@type string
--@readonly
M.registered_trademark = "®"
--@type string
--@readonly
M.trademark = "™"
return M