aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorV1K1NGbg <victor@ilchev.com>2024-08-22 17:49:09 -0300
committerHisham Muhammad <hisham@gobolinux.org>2024-10-21 13:30:51 -0300
commit06c47f38b00613a5c9d7b105565c2713a010b4b9 (patch)
treea001fbcbee9c2b5cba3b5ba6463dbca90b5fe7a1 /src
parentdb156bfe12421e71bf4239694b7d8901a52e427b (diff)
downloadluarocks-06c47f38b00613a5c9d7b105565c2713a010b4b9.tar.gz
luarocks-06c47f38b00613a5c9d7b105565c2713a010b4b9.tar.bz2
luarocks-06c47f38b00613a5c9d7b105565c2713a010b4b9.zip
Teal: add type definition module luarocks.core.types.args
Diffstat (limited to 'src')
-rw-r--r--src/luarocks/core/types/args.d.tl112
1 files changed, 112 insertions, 0 deletions
diff --git a/src/luarocks/core/types/args.d.tl b/src/luarocks/core/types/args.d.tl
new file mode 100644
index 00000000..d2aca6fc
--- /dev/null
+++ b/src/luarocks/core/types/args.d.tl
@@ -0,0 +1,112 @@
1local record args
2 record Args
3 tree: string
4 global: boolean
5 deps_mode: string
6 ["local"]: boolean --!
7 project_tree: string
8 server: string
9 dev: boolean
10 only_server: string --!
11 verbose: string
12 lua_version: string
13 lua_dir: string
14 no_project: boolean
15 input: {string}
16 nodeps: boolean
17 timeout: number --!
18 command: string
19 key: string
20 value: string
21 only_sources: string
22 no_manifest: boolean
23 force_lock: boolean
24 rockspec: string
25 namespace: string
26 pack_binary_rock: boolean
27 only_deps: boolean
28 branch: string
29 verify: boolean --!
30 check_lua_versions: boolean --!
31 pin: boolean
32 no_install: boolean
33 sign: boolean
34 no_doc: boolean
35 keep: boolean
36 force: boolean
37 force_fast: boolean
38 rock: string
39 version: string
40 scope: string
41 lua_incdir: string
42 lua_libdir: string
43 lua_ver: string
44 system_config: string
45 user_config: string
46 rock_trees: string
47 unset: boolean
48 json: boolean
49 home: boolean
50 porcelain: boolean
51 list: boolean --!
52 name: string
53 all: boolean
54 source: string
55 arch: string
56 location: string
57 tag: string
58 output: string
59 homepage: string
60 rockspec_format: string
61 summary: string
62 detailed: string
63 license: string
64 lua_versions: string
65 lib: string
66 no_gitignore: boolean
67 no_wrapper_scripts: boolean
68 wrapper_dir: string
69 reset: boolean
70 filter: string
71 outdated: boolean
72 new_version: string
73 dir: string
74 new_url: string
75 lr_path: string
76 lr_cpath: string
77 lr_bin: string
78 full: boolean
79 append: boolean
80 no_bin: boolean
81 old_versions: boolean
82 binary: boolean
83 rock_tree: boolean
84 rock_namespace: boolean
85 rock_dir: boolean
86 rock_license: boolean
87 issues: boolean
88 labels: boolean
89 modules: boolean
90 deps: boolean
91 build_deps: boolean
92 test_deps: boolean
93 mversion: boolean
94 test_type: string
95 args: {string}
96 prepare: boolean
97 src_rock: string
98 skip_pack: boolean
99 modname: string
100 add_server: string
101 no_refresh: boolean
102 index: boolean
103 repository: string
104 local_tree: string
105 temp_key: string
106 api_key: string
107 debug: boolean
108 rocks: {string}
109 end
110end
111
112return args \ No newline at end of file