Files
klz-cables.com/.pnpm-store/v10/files/0d/a2a4a3cd7e8ff9bddfd1e85ec0a6475b64442d0300fba92f1c51e5fda0fe3f53cb7e4765e72ac394d1c484007b312c7fa7a14c6a2af00405f85f9d9add53d2
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

10 lines
298 B
Plaintext

import { IPath, Path, PathType } from './path';
export declare class Vector implements IPath {
type: PathType;
x: number;
y: number;
constructor(x: number, y: number);
add(deltaX: number, deltaY: number): Vector;
}
export declare const isVector: (path: Path) => path is Vector;