7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
|
import { timeInterval } from '../../operator/timeInterval';
|
||
|
declare module '../../Observable' {
|
||
|
interface Observable<T> {
|
||
|
timeInterval: typeof timeInterval;
|
||
|
}
|
||
|
}
|