@cpod/sdk - v0.2.7
    Preparing search index...

    Interface FetchResult<T>

    Fetch result

    interface FetchResult<T = unknown> {
        data: T;
        cached: boolean;
        cached_at?: string;
        expires_at?: string;
    }

    Type Parameters

    • T = unknown
    Index

    Properties

    data: T
    cached: boolean
    cached_at?: string
    expires_at?: string