import type { Mesh } from '@anov/3d-core'; import type { options } from './types'; export interface ISphere { /** 创建球体 */ createSphere: (options: options) => Mesh; /** 更新球体 */ updateSphere: (options: options) => void; /** 销毁球体 */ destroy: () => void; }