File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ declare function collectgarbage(opt: 'count'): number;
19
19
* elements. By default, i is 1 and j is the length of the list, as defined by
20
20
* the length operator (see §2.5.5).
21
21
*/
22
- declare function unpack < T extends any [ ] > ( list : T ) : LuaMultiReturn < T [ ] > ;
22
+ declare function unpack < T extends any [ ] > ( list : T ) : LuaMultiReturn < T > ;
23
23
declare function unpack < T > ( list : T [ ] , i : number , j ?: number ) : LuaMultiReturn < T [ ] > ;
24
24
25
25
/**
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ declare namespace table {
94
94
*
95
95
* By default, i is 1 and j is #list.
96
96
*/
97
- function unpack < T extends any [ ] > ( list : T ) : LuaMultiReturn < T [ ] > ;
97
+ function unpack < T extends any [ ] > ( list : T ) : LuaMultiReturn < T > ;
98
98
function unpack < T > ( list : T [ ] , i : number , j ?: number ) : LuaMultiReturn < T [ ] > ;
99
99
100
100
/**
You can’t perform that action at this time.
0 commit comments