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 | c66654ddd5dd895b3c08a79facfc33d71809b589 (patch) | |
| tree | 8a1afa42dd1f82eb211bd7a139b981d4d66141d8 /src | |
| parent | 0de1d57f8cb31d122e6cbe4ab83b178a90d996c7 (diff) | |
| download | luarocks-c66654ddd5dd895b3c08a79facfc33d71809b589.tar.gz luarocks-c66654ddd5dd895b3c08a79facfc33d71809b589.tar.bz2 luarocks-c66654ddd5dd895b3c08a79facfc33d71809b589.zip | |
Teal: add type definition module luarocks.core.types.testrunner
Diffstat (limited to 'src')
| -rw-r--r-- | src/luarocks/core/types/testrunner.d.tl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/luarocks/core/types/testrunner.d.tl b/src/luarocks/core/types/testrunner.d.tl new file mode 100644 index 00000000..e310504d --- /dev/null +++ b/src/luarocks/core/types/testrunner.d.tl | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | local type Test = require("luarocks.core.types.rockspec").Test | ||
| 2 | |||
| 3 | local record testrunner | ||
| 4 | record TestRunner | ||
| 5 | detect_type: function(): boolean | ||
| 6 | run_tests: function(Test, {string}): boolean, string | ||
| 7 | end | ||
| 8 | end | ||
| 9 | return testrunner \ No newline at end of file | ||
