Files
klz-cables.com/.pnpm-store/v10/files/3e/8896199d5bf1d8cd80f90f6e9f63e9b3bd6c2da43ccde50de544f9eecb3a190d02a47c99e80f2b416b2e33d9b890be2352df9e7e8402fb5e2fdbf43ab1090a
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

12 lines
506 B
Plaintext

import { IPropertyListDescriptor } from '../IPropertyDescriptor';
import { LengthPercentage } from '../types/length-percentage';
import { StringValueToken } from '../syntax/tokenizer';
export declare enum BACKGROUND_SIZE {
AUTO = "auto",
CONTAIN = "contain",
COVER = "cover"
}
export declare type BackgroundSizeInfo = LengthPercentage | StringValueToken;
export declare type BackgroundSize = BackgroundSizeInfo[][];
export declare const backgroundSize: IPropertyListDescriptor<BackgroundSize>;