Files
klz-cables.com/.pnpm-store/v10/files/c5/445a06628d84f2f377d7dc9419e073192fdde882573315ded0fead17c6c7cd97e02e29b2b565c4684f70d294467d440bb348dfd2db54a19d517b1904c6ee89
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
509 B
Plaintext

import { LIST_STYLE_TYPE } from '../../property-descriptors/list-style-type';
import { CSSParsedCounterDeclaration } from '../../index';
export declare class CounterState {
private readonly counters;
getCounterValue(name: string): number;
getCounterValues(name: string): readonly number[];
pop(counters: string[]): void;
parse(style: CSSParsedCounterDeclaration): string[];
}
export declare const createCounterText: (value: number, type: LIST_STYLE_TYPE, appendSuffix: boolean) => string;