UNPKG

@gsmlg/three-fiber

Version:
13 lines (12 loc) 480 B
/// <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 {};