import type { Mesh } from '@anov/3d-core'; import type { options } from './types'; export interface IBox { /** 创建立方体 */ createBox: (options: options) => Mesh; /** 更新立方体 */ updateBox: (options: options) => void; /** 销毁立方体 */ destroy: () => void; }