UnpackArchiveFile | WebHare Platform SDK
WebHare Platform SDK
    Preparing search index...

    Interface UnpackArchiveFile

    interface UnpackArchiveFile {
        directory: string;
        fullPath: string;
        modTime: Instant;
        name: string;
        size: number;
        type: "file";
        arrayBuffer(): Promise<ArrayBuffer>;
        blob(): Promise<Blob>;
        bytes(): Promise<Uint8Array<ArrayBufferLike>>;
        stream(): ReadableStream<Uint8Array<ArrayBufferLike>>;
        text(): Promise<string>;
    }

    Hierarchy

    • UnpackArchiveEntry
      • UnpackArchiveFile
    Index

    Properties

    directory: string
    fullPath: string
    modTime: Instant
    name: string
    size: number
    type: "file"

    Methods

    • Returns Promise<ArrayBuffer>

    • Returns Promise<Blob>

    • Returns Promise<Uint8Array<ArrayBufferLike>>

    • Returns ReadableStream<Uint8Array<ArrayBufferLike>>

    • Returns Promise<string>