UNPKG

@devfamily/admiral

Version:

Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.

12 lines (11 loc) 491 B
/// <reference types="react" /> import { Upload as BaseUpload } from './Upload'; import { Dragger } from './Dragger'; import type { UploadProps } from './interfaces'; declare type InternalUploadType = typeof BaseUpload; interface UploadInterface<T = any> extends InternalUploadType { <U extends T>(props: React.PropsWithChildren<UploadProps<U>> & React.RefAttributes<any>): React.ReactElement; Dragger: typeof Dragger; } export declare const Upload: UploadInterface<any>; export {};