UNPKG

@fleet-frontend/mower-maps

Version:

a mower maps in google maps

24 lines 870 B
import React from 'react'; import { UnitsType } from '@/types/utils'; import { RealTimePartitionType } from '@/types/realTime'; import { RealTimeData } from '@/types'; interface BoundaryLabelsProps { editMap: boolean; mapData: unknown; pathData?: unknown; unitType: UnitsType; language: string; viewBox?: { x: number; y: number; width: number; height: number; } | null; rotation?: number; mowPartitionData?: RealTimePartitionType | null; realTimeData?: RealTimeData[]; onlyRead?: boolean; } declare const BoundaryLabels: React.MemoExoticComponent<({ editMap, mapData, pathData, unitType, language, viewBox, rotation, mowPartitionData, realTimeData, onlyRead, }: BoundaryLabelsProps) => import("react/jsx-runtime").JSX.Element>; export default BoundaryLabels; //# sourceMappingURL=index.d.ts.map