@wufengteam/wform
Version:
@wufengteam/wform
12 lines (11 loc) • 363 B
TypeScript
import type { FC } from 'react';
import type { AttachmentFile } from './type';
interface AttachmentsListProps {
onChange?: (value: string) => void;
filedList?: AttachmentFile[];
renderType?: string | undefined;
getEngineApis?: any;
disabled?: boolean;
}
declare const AttachmentsList: FC<AttachmentsListProps>;
export default AttachmentsList;