UNPKG

videx-3d

Version:

React 3D component library designed for sub surface visualizations in the browser

14 lines (13 loc) 402 B
export type GeneratorContextProps = { invoke: <T>(key: string, priority: number, args: any[]) => Promise<T>; }; /** * Generators context * * @see {@link sdk.GeneratorRegistry} * @see {@link GeneratorsProvider} * @see [Generators](/videx-3d/docs/documents/generators.html) * * @group Contexts */ export declare const GeneratorsContext: import('react').Context<GeneratorContextProps | null>;