diff options
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 |