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