UNPKG

@threlte/extras

Version:

Utilities, abstractions and plugins for your Threlte apps

9 lines (8 loc) 426 B
import type { ThrelteGltf } from '../../types/types.js'; import type { GltfProps } from './types.js'; type Props = GltfProps & { gltf?: ThrelteGltf | undefined; } & ThrelteGltf['materials']; declare const Gltf: import("svelte").Component<Props, {}, "userData" | "scene" | "animations" | "materials" | "gltf" | "asset" | "cameras" | "scenes" | "parser" | "nodes">; type Gltf = ReturnType<typeof Gltf>; export default Gltf;