(id)
| 28 | static repeat(callback, delay) { return native("xs_timer_repeat").call(this, callback, delay); } |
| 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 |
no outgoing calls
no test coverage detected