@wufengteam/wform
Version:
@wufengteam/wform
17 lines (16 loc) • 370 B
TypeScript
import type { FC } from 'react';
interface AddressProps {
fieldAttr?: string[];
/**
* 地址类型
*/
areaType?: string;
value?: any;
placeholder?: string;
disabled?: boolean;
onChange?: (value: any) => void;
getEngineApis?: any;
$$componentItem?: any;
}
declare const AddressPC: FC<AddressProps>;
export default AddressPC;