From 484810c4fbc0c71b21216e8bf2cec857403e10a8 Mon Sep 17 00:00:00 2001 From: Ryan Young Date: Fri, 2 Sep 2022 22:55:55 +0000 Subject: [PATCH] fix(5.0): missing not nil constraint --- core/5.0/global.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/5.0/global.d.ts b/core/5.0/global.d.ts index 0b58897..b93aa0b 100644 --- a/core/5.0/global.d.ts +++ b/core/5.0/global.d.ts @@ -102,7 +102,7 @@ declare function next(table: object, index?: any): LuaMultiReturn<[any, any] | [ * See function next for the caveats of modifying the table during its * traversal. */ -declare function pairs( +declare function pairs( t: LuaTable ): LuaIterable]>>; declare function pairs(t: T): LuaIterable]>>;