21 lines
220 B
Lua
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
|