diff options
author | V1K1NGbg <victor@ilchev.com> | 2024-08-22 17:49:09 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2024-10-21 13:30:51 -0300 |
commit | 7111e25ad1be727784e88a0e46b42e48fefa3db7 (patch) | |
tree | 43dac7f0c9af71374374edd1513b178afc969e98 | |
parent | d1ee8fbe2929e4761d40777ad8209a15ee46d218 (diff) | |
download | luarocks-7111e25ad1be727784e88a0e46b42e48fefa3db7.tar.gz luarocks-7111e25ad1be727784e88a0e46b42e48fefa3db7.tar.bz2 luarocks-7111e25ad1be727784e88a0e46b42e48fefa3db7.zip |
Teal: add type definition module luarocks.core.types.bopts
-rw-r--r-- | src/luarocks/core/types/bopts.d.tl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/luarocks/core/types/bopts.d.tl b/src/luarocks/core/types/bopts.d.tl new file mode 100644 index 00000000..81575c0c --- /dev/null +++ b/src/luarocks/core/types/bopts.d.tl | |||
@@ -0,0 +1,17 @@ | |||
1 | local record bopts | ||
2 | record BOpts | ||
3 | build_only_deps: boolean | ||
4 | deps_mode: string | ||
5 | verify: boolean | ||
6 | minimal_mode: boolean | ||
7 | need_to_fetch: boolean | ||
8 | branch: string | ||
9 | no_install: boolean | ||
10 | pin: boolean | ||
11 | namespace: string | ||
12 | check_lua_versions: boolean | ||
13 | rebuild: boolean | ||
14 | end | ||
15 | end | ||
16 | |||
17 | return bopts \ No newline at end of file | ||