Files
klz-cables.com/.pnpm-store/v10/files/56/9a8eac90ece69ab34cdc6aa56d5c4e0b02ba0d1b7ef92dead36a861d9eae750aeb992dbd683d8ac37856232107f5cba37f673ce5d6b8ccb8b773c7ba989ad4
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

16 lines
489 B
Plaintext

import { Logger } from './logger';
import { Cache, ResourceOptions } from './cache-storage';
import { Bounds } from '../css/layout/bounds';
export declare type ContextOptions = {
logging: boolean;
cache?: Cache;
} & ResourceOptions;
export declare class Context {
windowBounds: Bounds;
private readonly instanceName;
readonly logger: Logger;
readonly cache: Cache;
private static instanceCount;
constructor(options: ContextOptions, windowBounds: Bounds);
}