7 lines
195 B
TypeScript
7 lines
195 B
TypeScript
import { combineLatest as combineLatestStatic } from 'rxjs';
|
|
declare module 'rxjs/internal/Observable' {
|
|
namespace Observable {
|
|
let combineLatest: typeof combineLatestStatic;
|
|
}
|
|
}
|