Fix return type of without

This commit is contained in:
Ukendio 2024-05-03 18:39:23 +02:00
parent ed9a9538c4
commit ea6b434e34

View file

@ -637,7 +637,7 @@ export type Component<T> = {
}
type It<T...> = typeof(setmetatable({} :: {
without: <U...>(self: It<T...>, U...) ->
without: <U...>(self: It<T...>, U...) -> It<T...>
}, {} :: {
__iter: (self: It<T...>) -> (number, T...),
}))