/** * A {@link Client | Client} event measuring progress of an file uploading process. * * @event */ export interface UploadProgressEvent { /** * Event type. */ type: "uploadprogress"; /** * The non-rounded progress value from 0 to 1. To get a percentage (%), multiply the `data` by 100. */ data: number; /** * File object to upload. */ file: globalThis.File; } /** * Client events. */ export interface ClientEventMap { /** * A {@link Client | Client} event measuring progress of an file uploading process. */ uploadprogress: UploadProgressEvent; } //# sourceMappingURL=ClientEvents.d.ts.map