rsnext/examples/with-cerebral/modules/clock/actions.js

8 lines
133 B
JavaScript
Raw Normal View History

2017-09-23 16:30:22 +02:00
export function startTimer ({clock}) {
clock.start('clock.secondTicked')
}
export function stopTimer ({clock}) {
clock.stop()
}