import type { Line } from '@anov/3d-core'; import type { options } from './types'; export interface ILine { /** * 创建线 * @param options - 参数配置 */ createLine: (options: options) => Line; }