Files
klz-cables.com/.pnpm-store/v10/files/8e/8567a6a1b02ac18fdf41b77e35c6112a1cbd4da33f5e9e19c8fb639b041e11d87a7b5ab31e02f9a64521df4d1e31d969d8aa4eb70f57ec69c5a052ef70a861
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

7 lines
151 B
Plaintext

export declare class Deferred<T> {
promise: Promise<T>;
resolve: (value: T) => void;
reject: (reason: Error) => void;
constructor();
}