xref: /MusicFree/src/constants/repeatModeConst.ts (revision 5500cea7e936041b68a2f3709a583c2f0181b9e6)
1*5500cea7S猫头猫import {MusicRepeatMode} from '@/core/trackPlayer';
2*5500cea7S猫头猫
3bf6e62f2S猫头猫export default {
4*5500cea7S猫头猫    [MusicRepeatMode.QUEUE]: {
5bf6e62f2S猫头猫        icon: 'repeat',
64060c00aS猫头猫        text: '列表循环',
7bf6e62f2S猫头猫    },
8*5500cea7S猫头猫    [MusicRepeatMode.SINGLE]: {
9bf6e62f2S猫头猫        icon: 'repeat-once',
104060c00aS猫头猫        text: '单曲循环',
11bf6e62f2S猫头猫    },
12*5500cea7S猫头猫    [MusicRepeatMode.SHUFFLE]: {
132a3194f5S猫头猫        icon: 'shuffle-variant',
144060c00aS猫头猫        text: '随机播放',
154060c00aS猫头猫    },
164060c00aS猫头猫};
17