Files
status-react/src/react_native/background_timer.cljs
T
Volodymyr Kozieiev 28a81f2dd8 🎄 🧹 New Year cleanup (#21868)
* big cleannup: warnings fixed, unused code removed
2025-01-06 12:03:36 +00:00

12 lines
248 B
Clojure

(ns react-native.background-timer
(:require
["react-native-background-timer" :default background-timer]))
(defn set-timeout
[cb ms]
(.setTimeout background-timer cb ms))
(defn clear-timeout
[id]
(.clearTimeout background-timer id))