(callback, delay)
| 26 | class Timer { |
| 27 | static set(callback, delay, repeat) { return native("xs_timer_set").call(this, callback, delay, repeat); } |
| 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); } |
no outgoing calls
no test coverage detected