refactor: init the repo and decide to add more feature

This commit is contained in:
JuanZoran
2023-01-05 21:15:01 +08:00
parent 033622ed85
commit a1488b2d9b
17 changed files with 178 additions and 46 deletions

19
lua/Trans/util/parser.lua Normal file
View File

@@ -0,0 +1,19 @@
---@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