kysely
    Preparing search index...

    Interface Blob

    interface Blob {
        size: number;
        type: string;
        arrayBuffer(): Promise<ArrayBuffer>;
        bytes(): Promise<NonSharedUint8Array>;
        slice(start?: number, end?: number, contentType?: string): Blob;
        stream(): ReadableStream<NonSharedUint8Array>;
        text(): Promise<string>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    size: number
    type: string

    Methods