We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dab1fe commit e59e50dCopy full SHA for e59e50d
src/rx/src/Shared/Rx.lua
@@ -2243,10 +2243,10 @@ function Rx.window(windowBoundaries)
2243
assert(Observable.isObservable(windowBoundaries), "Bad observable")
2244
2245
return Rx.pipe({
2246
- Rx.buffer(windowBoundaries),
+ Rx.buffer(windowBoundaries) :: any,
2247
Rx.map(function(data)
2248
- return Rx.of(unpack(data))
2249
- end),
+ return Rx.of(unpack(data)) :: any
+ end) :: any,
2250
})
2251
end
2252
0 commit comments