From ea6b434e34d22214a335420c728a8f669e8c6c6f Mon Sep 17 00:00:00 2001 From: Ukendio Date: Fri, 3 May 2024 18:39:23 +0200 Subject: [PATCH] Fix return type of without --- lib/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/init.lua b/lib/init.lua index b673e03..70f235f 100644 --- a/lib/init.lua +++ b/lib/init.lua @@ -637,7 +637,7 @@ export type Component = { } type It = typeof(setmetatable({} :: { - without: (self: It, U...) -> + without: (self: It, U...) -> It }, {} :: { __iter: (self: It) -> (number, T...), }))