Files
klz-cables.com/.pnpm-store/v10/files/50/b1193484d849cf8ad91da6455f4b0a149d4eeedf94883a7600e399579355ef18ca32ca6948ed9981303ac0ea953b31b2238af7c50f24da7a7dec70b91b0686
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
198 B
Plaintext

import { CSSValue } from './syntax/parser';
import { Context } from '../core/context';
export interface ITypeDescriptor<T> {
name: string;
parse: (context: Context, value: CSSValue) => T;
}