UNPKG

@wulperstudio/cms

Version:
9 lines (8 loc) 316 B
import { HtmlHTMLAttributes } from 'react'; type OmitedInputProps = 'onChange' | 'type'; type BaseInputProps = HtmlHTMLAttributes<HTMLInputElement>; export interface AttachFileProps extends Omit<BaseInputProps, OmitedInputProps> { onChange?: (files: File[] | null) => void; animation?: boolean; } export {};