zy-react-library/components/Map/index.d.ts

17 lines
436 B
TypeScript
Raw Normal View History

import type { FC } from "react";
export interface MapProps {
/** 经度属性名,默认 longitude */
longitudeProps?: string;
/** 纬度属性名,默认 latitude */
latitudeProps?: string;
/** 经纬度变化回调 */
onConfirm?: (longitude: number | string, latitude: number | string) => void;
/** 经纬度是否必填,默认 true */
required?: boolean;
}
declare const Map: FC<MapProps>;
export default Map;