summaryrefslogtreecommitdiff
path: root/script/meta/bee/filesystem.lua
blob: 54c17c3717bd53d063eb19ac8d9b8bed3fe0e8a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---@class fspath
---@operator div: fspath
local fsPath = {}

---@return string
function fsPath:string()
end

---@return fspath
function fsPath:parent_path()
end

---@return boolean
function fsPath:is_relative()
end

---@return fspath
function fsPath:filename()
end

local fs = {}

---@param path string
---@return fspath
function fs.path(path)
end

return fs