mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-25 01:20:04 +00:00
Fix return type of without
This commit is contained in:
parent
ed9a9538c4
commit
ea6b434e34
1 changed files with 1 additions and 1 deletions
|
@ -637,7 +637,7 @@ export type Component<T> = {
|
||||||
}
|
}
|
||||||
|
|
||||||
type It<T...> = typeof(setmetatable({} :: {
|
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...),
|
__iter: (self: It<T...>) -> (number, T...),
|
||||||
}))
|
}))
|
||||||
|
|
Loading…
Reference in a new issue