diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2025-01-15 23:46:45 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2025-01-15 23:49:49 -0300 |
commit | 1ab24ce81191495bce09458fc55e65fdecb75aab (patch) | |
tree | e571466853730723d0c3b38efd24eb4632233780 /src | |
parent | 73790dfc3524a6eddef4dd028cb0371a07675ef0 (diff) | |
download | luarocks-1ab24ce81191495bce09458fc55e65fdecb75aab.tar.gz luarocks-1ab24ce81191495bce09458fc55e65fdecb75aab.tar.bz2 luarocks-1ab24ce81191495bce09458fc55e65fdecb75aab.zip |
fix: interfaces cannot contain record definitions
Diffstat (limited to 'src')
-rw-r--r-- | src/luarocks/core/types/build.d.tl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/luarocks/core/types/build.d.tl b/src/luarocks/core/types/build.d.tl index 35b42005..08a94712 100644 --- a/src/luarocks/core/types/build.d.tl +++ b/src/luarocks/core/types/build.d.tl | |||
@@ -1,13 +1,13 @@ | |||
1 | local record build | 1 | local record build |
2 | 2 | ||
3 | interface Build | 3 | interface Build |
4 | record Install | 4 | interface Install |
5 | lua: {(string|integer): string} | 5 | lua: {(string|integer): string} |
6 | lib: {(string|integer): string} | 6 | lib: {(string|integer): string} |
7 | conf: {(string|integer): string} | 7 | conf: {(string|integer): string} |
8 | bin: {(string|integer): string} | 8 | bin: {(string|integer): string} |
9 | end | 9 | end |
10 | 10 | ||
11 | type: string | 11 | type: string |
12 | install: Install | 12 | install: Install |
13 | copy_directories: {string} | 13 | copy_directories: {string} |
@@ -33,4 +33,4 @@ local record build | |||
33 | end | 33 | end |
34 | end | 34 | end |
35 | 35 | ||
36 | return build \ No newline at end of file | 36 | return build |