cosovo
    Preparing search index...

    Interface BlobURL

    Represents a Blob URL along with its file size and a revoke function.

    interface BlobURL {
        fileSize: number;
        revoke: () => void;
        url: string;
    }
    Index

    Properties

    Properties

    fileSize: number

    The size of the file in bytes.

    revoke: () => void

    A function to revoke the blob URL.

    url: string

    The blob URL.