@orca-fe/antd-plus
Version:
Transformer Container
25 lines (24 loc) • 656 B
TypeScript
export type AddressValueType = {
province?: string;
city?: string;
district?: string;
street?: string;
};
export type AddressProps = AddressValueType & {
onProvinceChange?: (value: string) => void;
onCityChange?: (value: string) => void;
onDistrictChange?: (value: string) => void;
onStreetChange?: (value: string) => void;
};
/**
* 对地址组件进行封装
* @param props
* @constructor
*/
declare const AddressFormComp: (props: {
provinceField?: string;
cityField?: string;
districtField?: string;
streetField?: string;
}) => import("react/jsx-runtime").JSX.Element;
export default AddressFormComp;