Interface RasterCachePolicyExperimental

interface RasterCachePolicy {
    key?: string;
    mode?:
        | "default"
        | "no-store"
        | "force-cache"
        | "reload";
}

Properties

Properties

key?: string
mode?:
    | "default"
    | "no-store"
    | "force-cache"
    | "reload"