Files
klz-cables.com/.pnpm-store/v10/files/e9/4a326475067a2530722e48e204142980e1d5833cc6ebad97c4abb9fc4404e8ee0ad40fee28aed84e68ab2b9b1bbe546e756c52e0e719b2fa23b27870ad1994
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

11 lines
184 B
Plaintext

export type Locale = string;
export interface LocaleData<T> {
data: T;
locale: Locale;
}
export interface LookupMatcherResult {
locale: string;
extension?: string;
nu?: string;
}