Files
klz-cables.com/.pnpm-store/v10/files/bb/f17ca7eb3bd8a51bb339082e5fad966f7436006ab0c13d7aa62d5924c5ff780143ebcb33877306bf4f57bd52836ad45ebe640880819600b0fc8420cf6111e1
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

13 lines
633 B
Plaintext

import { CSSValue } from '../../syntax/parser';
import { CSSRadialGradientImage } from '../image';
import { Context } from '../../../core/context';
export declare const CLOSEST_SIDE = "closest-side";
export declare const FARTHEST_SIDE = "farthest-side";
export declare const CLOSEST_CORNER = "closest-corner";
export declare const FARTHEST_CORNER = "farthest-corner";
export declare const CIRCLE = "circle";
export declare const ELLIPSE = "ellipse";
export declare const COVER = "cover";
export declare const CONTAIN = "contain";
export declare const radialGradient: (context: Context, tokens: CSSValue[]) => CSSRadialGradientImage;