UNPKG

suitest-js-api

Version:

Suitest is a test automation and device manipulation tool for living room devices and web browsers.

22 lines (18 loc) 548 B
/* eslint-disable key-spacing */ const videoState = { STOPPED: 'stopped', ERROR: 'error', PLAYING: 'playing', PAUSED: 'paused', CONNECTING: 'connecting', BUFFERING: 'buffering', FINISHED: 'finished', IDLE: 'idle', PREPARING: 'preparing', PREPARED: 'prepared', PLAYBACK_COMPLETED: 'playback_completed', UNKNOWN: 'unknown', REVERSING: 'reversing', }; Object.freeze(videoState); module.exports = videoState;