-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmods.d.lua
More file actions
40 lines (36 loc) · 963 Bytes
/
Copy pathmods.d.lua
File metadata and controls
40 lines (36 loc) · 963 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
40
---@meta mods
local stringify ---@module "mods.stringify"
local template ---@module "mods.template"
local version = "mods 0.6.0" -- x-release-please-version
---
---Entry point that exposes all modules under one 💤 lazily loaded table.
---
---@class mods
---@field calendar mods.calendar
---@field fs mods.fs
---@field glob mods.glob
---@field is mods.is
---@field json mods.json
---@field keyword mods.keyword
---@field list mods.List
---@field log mods.log
---@field ntpath mods.ntpath
---@field operator mods.operator
---@field path mods.path
---@field posixpath mods.posixpath
---@field runtime mods.runtime
---@field set mods.Set
---@field str mods.str
---@field stringcase mods.stringcase
---@field tbl mods.tbl
---@field utils mods.utils
---@field validate mods.validate
---@field assert mods.assert
---@field date mods.date
---@field duration mods.duration
local M = {
_VERSION = version,
stringify = stringify,
template = template,
}
return M