Colibrio Reader Framework API - Cloud license
    Preparing search index...

    Interface IResourceCacheResponse<T>

    The result object used for IResourceCacheClient fetch methods.

    interface IResourceCacheResponse<T extends string | Uint8Array | Blob> {
        data: T;
        metadata: IResourceMetadata;
    }

    Type Parameters

    • T extends string | Uint8Array | Blob

    Properties

    data: T

    The resource body data in the format corresponding to the method used when fetching the resource.

    Metadata about the fetched resource.