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

17 lines
241 B
TypeScript
Raw Normal View History

import { Play } from '/@/renderer/types';
export const PLAY_TYPES = [
{
label: 'Play',
play: Play.NOW,
},
{
2023-01-07 03:49:18 -08:00
label: 'Add to queue',
play: Play.LAST,
},
{
2023-01-07 03:49:18 -08:00
label: 'Add to queue next',
play: Play.NEXT,
},
];