UNPKG
@vime-js/standard
Version:
latest (1.6.6)
1.6.6
1.6.4
1.6.1
1.6.0
1.5.1
1.5.0
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.3.0
Vime Standard Player
github.com/vime-js/vime
vime-js/vime
@vime-js/standard
/
src
/
PlayerState.js
10 lines
(9 loc)
•
239 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
// Treeshaking safe.
const
PlayerState
=
function
PlayerState
(
) {};
PlayerState
.
IDLE
=
1
;
PlayerState
.
CUED
=
2
;
PlayerState
.
PLAYING
=
3
;
PlayerState
.
PAUSED
=
4
;
PlayerState
.
BUFFERING
=
5
;
PlayerState
.
ENDED
=
6
;
export
default
PlayerState
;