20 lines
345 B
Lua
20 lines
345 B
Lua
---@diagnostic disable: missing-return, unused-local
|
|
local M = {}
|
|
local type_check = require("Trans.util.debug").type_check
|
|
|
|
---解析宽度
|
|
---@param width integer
|
|
---@return integer
|
|
M.width = function (width)
|
|
-- TODO
|
|
end
|
|
|
|
---解析宽度
|
|
---@param height integer
|
|
---@return integer
|
|
M.height = function (height)
|
|
-- TODO
|
|
end
|
|
|
|
return M
|