UNPKG

hpg-r3f-model-scene

Version:

Pretty Footer react component used in ant.design

15 lines (14 loc) 441 B
import React from 'react'; import type { INodeMaterial } from '../interface'; import type { iNode } from '../utils'; export interface IProps { material: INodeMaterial; materialChange?: (inode: iNode) => void; exportScene?: (renderInfo: any) => void; } declare const Model: React.FC<{ material: INodeMaterial; materialChange?: (inode: iNode) => void; exportScene?: (renderInfo: any) => void; }>; export default Model;