@threlte/extras
Version:
Utilities, abstractions and plugins for your Threlte apps
8 lines (7 loc) • 316 B
TypeScript
import type { MeshLineMaterialProps } from './types.js';
import { ShaderMaterial } from 'three';
declare const MeshLineMaterial: import("svelte").Component<MeshLineMaterialProps, {
material: ShaderMaterial;
}, "ref">;
type MeshLineMaterial = ReturnType<typeof MeshLineMaterial>;
export default MeshLineMaterial;