mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-25 01:20:04 +00:00
self should not be explicit
This commit is contained in:
parent
c5147ac296
commit
727d70cab5
1 changed files with 1 additions and 1 deletions
|
@ -1223,7 +1223,7 @@ export type QueryShim<T...> = typeof(setmetatable({
|
||||||
with = noop :: (QueryShim<T...>, ...i53) -> QueryShim<T...>,
|
with = noop :: (QueryShim<T...>, ...i53) -> QueryShim<T...>,
|
||||||
drain = noop :: (QueryShim<T...>) -> QueryShim<T...>,
|
drain = noop :: (QueryShim<T...>) -> QueryShim<T...>,
|
||||||
replace = noop :: (QueryShim<T...>, fn: (T...) -> T...) -> (),
|
replace = noop :: (QueryShim<T...>, fn: (T...) -> T...) -> (),
|
||||||
iter = function(self: QueryShim<T...>): () -> (number, T...)
|
iter = function(self: QueryShim<T...>?): () -> (number, T...)
|
||||||
return noop
|
return noop
|
||||||
end
|
end
|
||||||
}, {
|
}, {
|
||||||
|
|
Loading…
Reference in a new issue