Files
klz-cables.com/.pnpm-store/v10/files/a6/7790f523092221af4ab541c779a4a3ec79b80755363dafe407fa00a9071b3e0f76a61574ae9537d1617bd47ed556b23da574a349bfa74d06df035c5009a994
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
300 B
Plaintext

export interface FontMetric {
baseline: number;
middle: number;
}
export declare class FontMetrics {
private readonly _data;
private readonly _document;
constructor(document: Document);
private parseMetrics;
getMetrics(fontFamily: string, fontSize: string): FontMetric;
}