aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/luarocks/core/types/installs.d.tl27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/luarocks/core/types/installs.d.tl b/src/luarocks/core/types/installs.d.tl
new file mode 100644
index 00000000..ec406760
--- /dev/null
+++ b/src/luarocks/core/types/installs.d.tl
@@ -0,0 +1,27 @@
1local record installs
2 record InstallDir
3 name: string
4 is_module_path: boolean
5 perms: string
6 end
7
8 record InstallDirs
9 lua: InstallDir
10 lib: InstallDir
11 conf: InstallDir
12 bin: InstallDir
13 end
14
15 record IOpts
16 namespace: string
17 deps_mode: string
18 force: boolean
19 force_fast: boolean
20 verify: boolean
21 no_doc: boolean
22 keep: boolean
23 end
24
25end
26
27return installs \ No newline at end of file