upload.d.ts 292 B

123456789
  1. interface uploadInit {
  2. clickInit?: MouseEventInit;
  3. changeInit?: EventInit;
  4. }
  5. interface uploadOptions {
  6. applyAccept?: boolean;
  7. }
  8. declare function upload(element: HTMLElement, fileOrFiles: File | File[], init?: uploadInit, { applyAccept }?: uploadOptions): void;
  9. export { upload };