diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2018-08-12 11:27:54 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-08-13 11:54:10 -0400 |
commit | e9d692ef70e05247e1d20f8536dd711d5df3309a (patch) | |
tree | 2b12d8136fb944ac09e619a5de421313df9ecbb7 /js/timers.ts | |
parent | 4772c14d125f61e0f78107f686d24ac72bd72d7c (diff) |
Use `@internal` with js/timers.ts
Diffstat (limited to 'js/timers.ts')
-rw-r--r-- | js/timers.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/timers.ts b/js/timers.ts index e5c7a5f3c..3791e079d 100644 --- a/js/timers.ts +++ b/js/timers.ts @@ -21,6 +21,7 @@ interface Timer { const timers = new Map<number, Timer>(); +/** @internal */ export function onMessage(msg: fbs.TimerReady) { const timerReadyId = msg.id(); const timerReadyDone = msg.done(); |