(id)
| 29 | static schedule(id, delay, repeat) { return native("xs_timer_schedule").call(this, id, delay, repeat); } |
| 30 | static clear(id) { return native("xs_timer_clear").call(this, id); } |
| 31 | static delay(id) { return native("xs_timer_delay").call(this, id); } |
| 32 | }; |
| 33 | |
| 34 | export default Timer; |
no outgoing calls
no test coverage detected