| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 65b51d0 commit c3a7a0b
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -7,6 +7,7 @@ | |||
| 7 | 7 | "./typings/internalBinding/messaging.d.ts", | |
| 8 | 8 | "./typings/internalBinding/options.d.ts", | |
| 9 | 9 | "./typings/internalBinding/serdes.d.ts", | |
| 10 | + "./typings/internalBinding/timers.d.ts", | ||
| 10 | 11 | "./typings/internalBinding/util.d.ts", | |
| 11 | 12 | "./typings/internalBinding/worker.d.ts", | |
| 12 | 13 | "./typings/internalBinding.d.ts", | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,8 @@ | |||
| 1 | + declare function InternalBinding(binding: 'timers'): { | ||
| 2 | + getLibuvNow(): number; | ||
| 3 | + setupTimers(immediateCallback: () => void, timersCallback: (now: number) => void): void; | ||
| 4 | + scheduleTimer(msecs: number): void; | ||
| 5 | + toggleTimerRef(value: boolean): void; | ||
| 6 | + toggleImmediateRef(value: boolean): void; | ||
| 7 | + immediateInfo: Uint32Array; | ||
| 8 | + }; | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments