@gsmlg/three-fiber
Version:
three-fiber library.
13 lines (12 loc) • 480 B
TypeScript
/// <reference types="react" />
import { GLTF } from 'three/examples/jsm/loaders/GLTFLoader';
interface ModelExhibitionProps {
modelUrl: string;
modelUpdater?: (g: GLTF) => void;
backgroundColor?: object;
fogAttributes?: object;
environment?: object;
meshAttributes?: object;
}
export declare const ModelExhibition: ({ modelUrl, environment, modelUpdater, backgroundColor, fogAttributes, meshAttributes, }: ModelExhibitionProps) => JSX.Element;
export {};