@fleet-frontend/mower-maps
Version:
a mower maps in google maps
15 lines • 784 B
TypeScript
import { DrawElement } from '../types/layers';
interface SubBoundaryBorderStore {
subBoundaryBorder: Record<string, DrawElement<any>>;
addSubBoundaryBorder: (key: string, element: DrawElement<any>) => void;
clearSubBoundaryBorder: () => void;
obstacles: Record<string, DrawElement<any>>;
addObstacles: (key: string, element: DrawElement<any>) => void;
clearObstacles: () => void;
svgElements: Record<string, DrawElement<any>>;
addSvgElements: (key: string, element: DrawElement<any>) => void;
clearSvgElements: () => void;
}
declare const useSubBoundaryBorderStore: import("zustand").UseBoundStore<import("zustand").StoreApi<SubBoundaryBorderStore>>;
export default useSubBoundaryBorderStore;
//# sourceMappingURL=useSubBoundaryBorderStore.d.ts.map