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;
1919 * elements. By default, i is 1 and j is the length of the list, as defined by
2020 * the length operator (see §2.5.5).
2121 */
22- declare function unpack < T extends any [ ] > ( list : T ) : LuaMultiReturn < T [ ] > ;
22+ declare function unpack < T extends any [ ] > ( list : T ) : LuaMultiReturn < T > ;
2323declare function unpack < T > ( list : T [ ] , i : number , j ?: number ) : LuaMultiReturn < T [ ] > ;
2424
2525/**
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ declare namespace table {
9494 *
9595 * By default, i is 1 and j is #list.
9696 */
97- function unpack < T extends any [ ] > ( list : T ) : LuaMultiReturn < T [ ] > ;
97+ function unpack < T extends any [ ] > ( list : T ) : LuaMultiReturn < T > ;
9898 function unpack < T > ( list : T [ ] , i : number , j ?: number ) : LuaMultiReturn < T [ ] > ;
9999
100100 /**
You can’t perform that action at this time.
0 commit comments