feishin/src/renderer/features/shared/utils.ts

17 lines
250 B
TypeScript
Raw Normal View History

import { Play } from '/@/renderer/types';
export const PLAY_TYPES = [
{
label: 'Play',
play: Play.NOW,
},
{
label: 'Add to queue (last)',
play: Play.LAST,
},
{
label: 'Add to queue (next)',
play: Play.NEXT,
},
];