mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-09-14 11:39:05 +00:00
10 lines
273 B
TypeScript
10 lines
273 B
TypeScript
![]() |
import { Observable } from '../../Observable';
|
||
|
import { forkJoin as staticForkJoin } from '../../observable/forkJoin';
|
||
|
|
||
|
Observable.forkJoin = staticForkJoin;
|
||
|
|
||
|
declare module '../../Observable' {
|
||
|
namespace Observable {
|
||
|
export let forkJoin: typeof staticForkJoin;
|
||
|
}
|
||
|
}
|