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'
};
