16 lines
277 B
TypeScript
16 lines
277 B
TypeScript
import { Play } from '/@/renderer/types';
|
|
|
|
export const PLAY_TYPES = [
|
|
{
|
|
label: 'Play',
|
|
play: Play.NOW,
|
|
},
|
|
{
|
|
label: 'Add to queue',
|
|
play: Play.LAST,
|
|
},
|
|
{
|
|
label: 'Add to queue next',
|
|
play: Play.NEXT,
|
|
},
|
|
];
|