Skip to content

Commit

Permalink
Create build
Browse files Browse the repository at this point in the history
  • Loading branch information
siposdani87 authored and dsipos committed May 7, 2024
1 parent 6158933 commit c3e780e
Show file tree
Hide file tree
Showing 4 changed files with 1,203 additions and 1,136 deletions.
2 changes: 1 addition & 1 deletion dist/hooks/useNewPolygon.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { LatLng } from 'react-native-maps';
import { MapPolygonExtendedProps } from '../lib/types';
export declare const useNewPolygon: (newPolygon?: MapPolygonExtendedProps, onPolygonCreate?: ((polygon: MapPolygonExtendedProps) => void) | undefined) => [() => void, () => void, (coordinate: LatLng) => void];
export declare const useNewPolygon: (newPolygon?: MapPolygonExtendedProps, onPolygonCreate?: (polygon: MapPolygonExtendedProps) => void) => [() => void, () => void, (coordinate: LatLng) => void];
7 changes: 6 additions & 1 deletion dist/hooks/useSelectedKey.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
import { Dispatch, SetStateAction } from 'react';
import { MapPolygonExtendedProps, PolygonKey } from '../lib/types';
export declare const useSelectedKey: (polygons: MapPolygonExtendedProps[]) => [PolygonKey, Dispatch<SetStateAction<PolygonKey>>, (key: PolygonKey) => void, (index: number) => void];
export declare const useSelectedKey: (polygons: MapPolygonExtendedProps[]) => [
PolygonKey,
Dispatch<SetStateAction<PolygonKey>>,
(key: PolygonKey) => void,
(index: number) => void
];
Loading

0 comments on commit c3e780e

Please sign in to comment.