mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
9 lines
225 B
TypeScript
9 lines
225 B
TypeScript
import { createContext } from 'react';
|
|
|
|
type VoidFunc = () => void;
|
|
|
|
type ImageUploaderTriggerContextType = VoidFunc | null;
|
|
|
|
export const ImageUploaderTriggerContext =
|
|
createContext<ImageUploaderTriggerContextType>(null);
|