ICT30016-Assignment-3/node_modules/@testing-library/user-event/dist/upload.d.ts
dlawler489 a79a6afd34 intial
intial
2025-09-16 12:09:52 +10:00

9 lines
292 B
TypeScript

interface uploadInit {
clickInit?: MouseEventInit;
changeInit?: EventInit;
}
interface uploadOptions {
applyAccept?: boolean;
}
declare function upload(element: HTMLElement, fileOrFiles: File | File[], init?: uploadInit, { applyAccept }?: uploadOptions): void;
export { upload };