UNPKG

@fleet-frontend/mower-maps

Version:

a mower maps in google maps

26 lines 544 B
/** * 处理器模块类型定义 */ /** * 路径数据处理器配置 */ export interface PathConfig { lineWidth?: number; showEdgePaths?: boolean; showTransPaths?: boolean; showMowingPaths?: boolean; edgePathColor?: string; transPathColor?: string; mowingPathColor?: string; edgePathOpacity?: number; transPathOpacity?: number; mowingPathOpacity?: number; } /** * 路径元素集合 */ export interface PathElements { id: number; elements: any[]; } //# sourceMappingURL=processor.d.ts.map