7 lines
183 B
TypeScript
7 lines
183 B
TypeScript
import { throwError as staticThrowError } from 'rxjs';
|
|
declare module 'rxjs/internal/Observable' {
|
|
namespace Observable {
|
|
let throwError: typeof staticThrowError;
|
|
}
|
|
}
|