mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-02 02:43:33 +00:00
17 lines
250 B
TypeScript
17 lines
250 B
TypeScript
|
|
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,
|
||
|
|
},
|
||
|
|
];
|