Libraries
    Preparing search index...

    Interface CacheTagDefinition

    A serialisable cache-tag definition stored on endpoint metadata.

    properties maps human-readable key names (used as label segments in the final cache key) to accessors that resolve the actual value from call-time request data.

    interface CacheTagDefinition {
        name: string;
        properties: Readonly<Record<string, CacheTagPropertyAccessor>>;
    }
    Index

    Properties

    Properties

    name: string
    properties: Readonly<Record<string, CacheTagPropertyAccessor>>