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