Files
klz-cables.com/.pnpm-store/v10/files/10/cf415fa11c3f21a3c279a7a82e4d0b4ba68ab411fedbc49cdd4796b383e1b7facc75142287d44aaa03c6091509ab449640b0089319d254946ef435736b2541
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
355 B
Plaintext

import { IPropertyListDescriptor } from '../IPropertyDescriptor';
export declare const enum TEXT_DECORATION_LINE {
NONE = 0,
UNDERLINE = 1,
OVERLINE = 2,
LINE_THROUGH = 3,
BLINK = 4
}
export declare type TextDecorationLine = TEXT_DECORATION_LINE[];
export declare const textDecorationLine: IPropertyListDescriptor<TextDecorationLine>;