suitest-js-api
Version:
Suitest is a test automation and device manipulation tool for living room devices and web browsers.
17 lines (16 loc) • 495 B
TypeScript
export type 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',
UNDEFINED: 'undefined'
};