UNPKG
@corpusant/wavesurfer.js
Version:
latest (7.9.0)
7.9.0
Audio waveform player
wavesurfer.xyz
katspaugh/wavesurfer.js
@corpusant/wavesurfer.js
/
dist
/
timer.d.ts
12 lines
(11 loc)
•
248 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
EventEmitter
from
'./event-emitter.js'
;
type
TimerEvents
= {
tick
: []; };
declare
class
Timer
extends
EventEmitter
<
TimerEvents
> {
private
unsubscribe;
start
():
void
;
stop
():
void
;
destroy
():
void
; }
export
default
Timer
;