Sporades SDK API
    Preparing search index...

    Type Alias UploadProgressEvent

    Upload progress event for a single file upload.

    type UploadProgressEvent = {
        fileId: string;
        loaded: number;
        total: number;
        type: "progress";
    }
    Index
    fileId: string
    loaded: number
    total: number
    type: "progress"