@wufengteam/wform
Version:
@wufengteam/wform
20 lines (19 loc) • 421 B
TypeScript
export interface TextProps {
name: string;
label: string;
rules?: any[];
placeholder?: string;
fieldAttr?: string[];
initialValue?: any[];
fieldDes?: string;
idenTemplate?: string;
fieldMapping: any;
disabled?: boolean;
$$componentItem: {
platform: 'h5' | 'pc';
Field?: any;
[key: string]: any;
};
basicStatus?: string;
visible?: boolean;
}