@wufengteam/wform
Version:
@wufengteam/wform
17 lines (16 loc) • 418 B
TypeScript
import type { FC } from 'react';
interface AutographFile {
appId: string;
fileId: string;
fileName: string;
}
interface InnerAutographProps {
fieldAttr: string[];
value?: AutographFile;
onChange?: (value?: AutographFile) => void;
disabled?: boolean;
$$componentItem?: any;
getEngineApis?: any;
}
declare const InnerAutograph: FC<InnerAutographProps>;
export default InnerAutograph;