skynet/cclib/types/io.lua

12 lines
383 B
Lua

---@meta
---@alias ccTweaked.io.seekMode
---| '"set"' # Relative to the start of the file
---| '"cur"' # Relative to the current position (default)
---| '"end"' # Relative to the end of the file
---@alias ccTweaked.io.readMode
---| '"l"' # Read the next line (no trailing newline)
---| '"L"' # Read the next line (with trailing newline)
---| '"a"' # Read the remainder of the file