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