UNPKG

react-threeco

Version:

Animate (interactive) 3D and 2D graphics in React

16 lines (15 loc) 284 B
export interface Config { onUpdate?: { (deltaTime: number, now: DOMHighResTimeStamp): void; }; onRender: { (): void; }; onUnmount?: { (): void; }; autorun?: boolean; } export type SetupFn = { (...context: unknown[]): Config; };