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 | 61d24fc2e01e459733ac9a24acdeaaaa1b4b8a69 (patch) | |
tree | 2c2724993c4f99ae54f05d4161efaffcf043eee4 | |
parent | cee67c5e85c7b9fa64c579cbb564c6c39c8c25d0 (diff) | |
download | luarocks-61d24fc2e01e459733ac9a24acdeaaaa1b4b8a69.tar.gz luarocks-61d24fc2e01e459733ac9a24acdeaaaa1b4b8a69.tar.bz2 luarocks-61d24fc2e01e459733ac9a24acdeaaaa1b4b8a69.zip |
Teal: add type definition module luarocks.core.types.persist
-rw-r--r-- | src/luarocks/core/types/persist.d.tl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/luarocks/core/types/persist.d.tl b/src/luarocks/core/types/persist.d.tl new file mode 100644 index 00000000..259461de --- /dev/null +++ b/src/luarocks/core/types/persist.d.tl | |||
@@ -0,0 +1,4 @@ | |||
1 | local record persist | ||
2 | type PersistableTable = { string | number : string | number | boolean | PersistableTable } | ||
3 | end | ||
4 | return persist \ No newline at end of file | ||