chore: Actually expose query:drain(), ?

This commit is contained in:
Mark Marks 2024-08-29 18:32:56 +02:00
parent ce70b1b2ee
commit f0048e306e

View file

@ -1493,6 +1493,7 @@ type Query<T...> = typeof(setmetatable({}, {
})) & {
iter: Iter<T...>,
next: Item<T...>,
drain: (self: Query<T...>) -> Query<T...>,
with: (self: Query<T...>, ...i53) -> Query<T...>,
without: (self: Query<T...>, ...i53) -> Query<T...>,
replace: (self: Query<T...>, <U...>(T...) -> (U...)) -> (),