Files
status-react/src/react_native/background_timer.cljs
T
2022-12-20 22:45:37 +08:00

19 lines
384 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))
(defn set-interval
[cb ms]
(.setInterval background-timer cb ms))
(defn clear-interval
[id]
(.clearInterval background-timer id))