Files
klz-cables.com/.pnpm-store/v10/files/e6/632e5ed921d62805a65c9072fa596398f2780ab7ad01fcf2ccb462e1a3767eee20aa758cf6d82158d0dc05251c5b39bdd9f2cdc5b69e5ded82a1e1e1e29774
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

10 lines
248 B
Plaintext

export declare class Deferred<T> {
private _promise;
private _resolve;
private _reject;
constructor();
get promise(): Promise<T>;
resolve(val: T): void;
reject(err: unknown): void;
}
//# sourceMappingURL=promise.d.ts.map