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

9 lines
309 B
Plaintext

import { CSSParsedDeclaration } from '../css/index';
import { TextBounds } from '../css/layout/text';
import { Context } from '../core/context';
export declare class TextContainer {
text: string;
textBounds: TextBounds[];
constructor(context: Context, node: Text, styles: CSSParsedDeclaration);
}