7 lines
169 B
TypeScript
Executable File
7 lines
169 B
TypeScript
Executable File
import { windowTime } from '../../operator/windowTime';
|
|
declare module '../../Observable' {
|
|
interface Observable<T> {
|
|
windowTime: typeof windowTime;
|
|
}
|
|
}
|