mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-02 10:53:33 +00:00
Add shared items
- Play button - Play types
This commit is contained in:
parent
131d7c5e3b
commit
dc6936b22c
3 changed files with 41 additions and 0 deletions
16
src/renderer/features/shared/utils.ts
Normal file
16
src/renderer/features/shared/utils.ts
Normal 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,
|
||||
},
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue