mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-09 05:20:13 +02:00
9 lines
274 B
TypeScript
9 lines
274 B
TypeScript
import { createContext } from 'react';
|
|
import { PlayQueueAddOptions } from '/@/renderer/types';
|
|
|
|
export const PlayQueueHandlerContext = createContext<{
|
|
handlePlayQueueAdd: ((options: PlayQueueAddOptions) => void) | undefined;
|
|
}>({
|
|
handlePlayQueueAdd: undefined,
|
|
});
|