Add shared items

- Play button
- Play types
This commit is contained in:
jeffvli 2022-12-29 17:07:39 -08:00
parent 131d7c5e3b
commit dc6936b22c
3 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,16 @@
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,
},
];