@wufengteam/inputs
Version:
平台提供的右侧属性编辑器,需要在主工程中注册
26 lines (25 loc) • 565 B
TypeScript
export interface AttachmentFile {
name: string;
fileId: string;
type?: string;
size?: number;
fileCode?: string;
appId?: string;
status?: string;
}
export interface AttachmentsListProps {
value?: AttachmentFile[];
onChange?: (value: AttachmentFile[]) => void;
/**
* 当前属性编辑控件所属的组件数据
*/
selectedComp?: any;
}
export interface ChooseAttachmentsProps {
label: string;
name: string;
/**
* 当前属性编辑控件所属的组件数据
*/
selectedComp?: any;
}