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