self should not be explicit

This commit is contained in:
Ukendio 2024-08-07 18:43:49 +02:00
parent c5147ac296
commit 727d70cab5

View file

@ -1223,7 +1223,7 @@ export type QueryShim<T...> = typeof(setmetatable({
with = noop :: (QueryShim<T...>, ...i53) -> QueryShim<T...>,
drain = noop :: (QueryShim<T...>) -> QueryShim<T...>,
replace = noop :: (QueryShim<T...>, fn: (T...) -> T...) -> (),
iter = function(self: QueryShim<T...>): () -> (number, T...)
iter = function(self: QueryShim<T...>?): () -> (number, T...)
return noop
end
}, {