mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-03 03:11:40 +00:00
9 lines
270 B
TypeScript
9 lines
270 B
TypeScript
|
|
import { createContext } from 'react';
|
||
|
|
import { PlayQueueAddOptions } from '/@/renderer/types';
|
||
|
|
|
||
|
|
export const PlayQueueHandlerContext = createContext<{
|
||
|
|
handlePlayQueueAdd: ((options: PlayQueueAddOptions) => void) | undefined;
|
||
|
|
}>({
|
||
|
|
handlePlayQueueAdd: undefined,
|
||
|
|
});
|