Skip to content

Commit e59e50d

Browse files
Here we go again
1 parent 4dab1fe commit e59e50d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/rx/src/Shared/Rx.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2243,10 +2243,10 @@ function Rx.window(windowBoundaries)
22432243
assert(Observable.isObservable(windowBoundaries), "Bad observable")
22442244

22452245
return Rx.pipe({
2246-
Rx.buffer(windowBoundaries),
2246+
Rx.buffer(windowBoundaries) :: any,
22472247
Rx.map(function(data)
2248-
return Rx.of(unpack(data))
2249-
end),
2248+
return Rx.of(unpack(data)) :: any
2249+
end) :: any,
22502250
})
22512251
end
22522252

0 commit comments

Comments
 (0)