declare enum RepeatMode { /** * Repeat is off. */ Off = 0, /** * Repeats the current track. */ Track = 1, /** * Repeats the current context. */ Context = 2 } export default RepeatMode;