@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
9 lines (8 loc) • 316 B
TypeScript
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 {};