7 lines
177 B
TypeScript
Raw Normal View History

2019-11-26 14:50:43 -08:00
import { throttleTime } from '../../operator/throttleTime';
declare module '../../Observable' {
interface Observable<T> {
throttleTime: typeof throttleTime;
}
}