xref: /MusicFree/src/constants/repeatModeConst.ts (revision 5589cdf32b2bb0f641e5ac7bf1f6152cd6b9b70e)
1import {MusicRepeatMode} from '@/core/trackPlayer';
2
3export default {
4    [MusicRepeatMode.QUEUE]: {
5        icon: 'repeat-song-1',
6        text: '列表循环',
7    },
8    [MusicRepeatMode.SINGLE]: {
9        icon: 'repeat-song',
10        text: '单曲循环',
11    },
12    [MusicRepeatMode.SHUFFLE]: {
13        icon: 'shuffle',
14        text: '随机播放',
15    },
16} as const;
17