Files
klz-cables.com/.pnpm-store/v10/files/a2/847c8bc4c39125832c2f541bbb9a48710b45674727c6b22680ab7e90bfaa4f3467fc2fa49e1fc56f709d77454cf3d2353b4a2c47c2e00d6391a38f8a02b502
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

27 lines
748 B
Plaintext

import { Context } from './context';
export declare class CacheStorage {
private static _link?;
private static _origin;
static getOrigin(url: string): string;
static isSameOrigin(src: string): boolean;
static setContext(window: Window): void;
}
export interface ResourceOptions {
imageTimeout: number;
useCORS: boolean;
allowTaint: boolean;
proxy?: string;
}
export declare class Cache {
private readonly context;
private readonly _options;
private readonly _cache;
constructor(context: Context, _options: ResourceOptions);
addImage(src: string): Promise<void>;
match(src: string): Promise<any>;
private loadImage;
private has;
keys(): Promise<string[]>;
private proxy;
}