UNPKG

@fleet-frontend/mower-maps

Version:

a mower maps in google maps

30 lines 864 B
import React from 'react'; import { DataType } from '@/processor/unified'; import { RecordTypeEnum } from '@/context/mapEdit'; export declare enum HandleElementMapType { name = "name", focus = "focus", delete = "delete", timePeriod = "timePeriod", area = "area", dooleExist = "dooleExist" } export interface MapItem { type: DataType; paramType: RecordTypeEnum; label: string; icon: React.ReactNode; } export declare const DATE_TYPE_MAP: ({ type: DataType; label: string; icon: import("react/jsx-runtime").JSX.Element; paramType?: undefined; } | { type: DataType; paramType: RecordTypeEnum; label: string; icon: import("react/jsx-runtime").JSX.Element; })[]; export declare const HandleElementMap: Record<DataType, Record<HandleElementMapType, boolean>>; //# sourceMappingURL=contants.d.ts.map