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 { interval as staticInterval } from '../../observable/interval';
|
||
|
|
||
|
Observable.interval = staticInterval;
|
||
|
|
||
|
declare module '../../Observable' {
|
||
|
namespace Observable {
|
||
|
export let interval: typeof staticInterval;
|
||
|
}
|
||
|
}
|