diff options
author | V1K1NGbg <victor@ilchev.com> | 2024-08-22 17:49:09 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2024-08-22 17:49:09 -0300 |
commit | 5c0e6a335e48ef70d1f740548b86bb76b1f4c572 (patch) | |
tree | 6b989249bd0e3775b4245118076437221a1c83e7 | |
parent | 913a34a560e22464a111e876564235b497539174 (diff) | |
download | luarocks-5c0e6a335e48ef70d1f740548b86bb76b1f4c572.tar.gz luarocks-5c0e6a335e48ef70d1f740548b86bb76b1f4c572.tar.bz2 luarocks-5c0e6a335e48ef70d1f740548b86bb76b1f4c572.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 | ||