Files
klz-cables.com/.pnpm-store/v10/files/03/50b407ba41f31dadb1243d10d95083c530584f5a80c1b71e97b3bee4ef15ec1f84c38caf84c8b67cf054d11aa36327c2caaabc886f00677e5a67596ef6b5e6
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
326 B
Plaintext

import { ElementContainer } from '../element-container';
import { Context } from '../../core/context';
export declare class CanvasElementContainer extends ElementContainer {
canvas: HTMLCanvasElement;
intrinsicWidth: number;
intrinsicHeight: number;
constructor(context: Context, canvas: HTMLCanvasElement);
}