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