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

19 lines
468 B
Plaintext

export interface LoggerOptions {
id: string;
enabled: boolean;
}
export declare class Logger {
static instances: {
[key: string]: Logger;
};
private readonly id;
private readonly enabled;
private readonly start;
constructor({ id, enabled }: LoggerOptions);
debug(...args: unknown[]): void;
getTime(): number;
info(...args: unknown[]): void;
warn(...args: unknown[]): void;
error(...args: unknown[]): void;
}