import type { Mesh } from '@anov/3d-core'; import type { options } from './types'; export interface ICylinder { /** * 创建圆柱体 * @param options - 参数配置 * @returns */ createCylinder: (options: options) => Mesh; }