docs.rs failed to build rong_timer-0.3.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
rong_timer-0.1.1
rong_timer
Timer APIs including standard callback timers plus Bun-aligned sleep helpers on Rong.
JS APIs
setTimeout(callback, delay?)— execute a callback once after a delay; returns a timer IDclearTimeout(id)— cancel a timeoutsetInterval(callback, delay?)— execute a callback repeatedly at an interval; returns a timer IDclearInterval(id)— cancel an intervalRong.sleep(delay?)— Bun-style async sleep; accepts milliseconds or aDateRong.sleepSync(delay?)— Bun-style synchronous sleep; blocks the current thread