@fleet-frontend/mower-maps
Version:
a mower maps in google maps
23 lines • 699 B
TypeScript
import React from 'react';
import { UnitsType } from '../../../../utils';
interface DistanceLabelsProps {
coordinates: number[][];
createMode?: boolean;
editMode?: boolean;
completed?: boolean;
showPoints?: boolean;
mousePos?: {
x: number;
y: number;
} | null;
ghostLastDistance?: string | null;
ghostLastMidpoint?: [number, number] | null;
ghostFirstDistance?: string | null;
ghostFirstMidpoint?: [number, number] | null;
fontSize?: number;
showFirstDistance?: boolean;
unit?: UnitsType;
}
declare const DistanceLabels: React.FC<DistanceLabelsProps>;
export default DistanceLabels;
//# sourceMappingURL=DistanceLabels.d.ts.map