index.d.ts 367 B

12345678910
  1. import { FC } from "react";
  2. import { AMapGeocoderGetAddressResult } from "../../types";
  3. export interface DageMapGeocoderProps {
  4. position: number[];
  5. city?: number | string;
  6. onChange?: (res: AMapGeocoderGetAddressResult) => void;
  7. onError?: () => void;
  8. }
  9. export declare const DageMapGeocoder: FC<DageMapGeocoderProps>;
  10. //# sourceMappingURL=index.d.ts.map