mirror of
https://github.com/Hilbis/Hilbish
synced 2025-04-01 19:23:24 +00:00
docs: [ci] generate new docs
This commit is contained in:
parent
9e596dc271
commit
3db6334445
@ -1,3 +1,5 @@
|
|||||||
|
abs(path) > Gives an absolute version of `path`.
|
||||||
|
|
||||||
cd(dir) > Changes directory to `dir`
|
cd(dir) > Changes directory to `dir`
|
||||||
|
|
||||||
mkdir(name, recursive) > Makes a directory called `name`. If `recursive` is true, it will create its parent directories.
|
mkdir(name, recursive) > Makes a directory called `name`. If `recursive` is true, it will create its parent directories.
|
||||||
|
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
local fs = {}
|
local fs = {}
|
||||||
|
|
||||||
|
--- Gives an absolute version of `path`.
|
||||||
|
--- @param path string
|
||||||
|
function fs.abs(path) end
|
||||||
|
|
||||||
--- Changes directory to `dir`
|
--- Changes directory to `dir`
|
||||||
--- @param dir string
|
--- @param dir string
|
||||||
function fs.cd(dir) end
|
function fs.cd(dir) end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user