Libraries
    Preparing search index...

    Interface SerializedCacheTag

    Shape of a serialized cache tag from endpoint metadata.

    interface SerializedCacheTag {
        name: string;
        properties: Readonly<
            Record<
                string,
                { getValue(root: CacheTagRoot): { success: boolean; value?: unknown } },
            >,
        >;
    }
    Index

    Properties

    Properties

    name: string
    properties: Readonly<
        Record<
            string,
            { getValue(root: CacheTagRoot): { success: boolean; value?: unknown } },
        >,
    >