mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-05 04:01:39 +00:00
16 lines
241 B
TypeScript
16 lines
241 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,
|
|
},
|
|
];
|