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