Files
klz-cables.com/.pnpm-store/v10/files/05/383d868c6b123f405173263a964a09efc8d749ae5642bbc81b89f56c34c813eda5827d12e813fee1c6168682a850d17e0bd5fa164c0a412183198a99dbaeb6
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

15 lines
544 B
Plaintext

import { Vector } from './vector';
import { IPath, PathType, Path } from './path';
export declare class BezierCurve implements IPath {
type: PathType;
start: Vector;
startControl: Vector;
endControl: Vector;
end: Vector;
constructor(start: Vector, startControl: Vector, endControl: Vector, end: Vector);
subdivide(t: number, firstHalf: boolean): BezierCurve;
add(deltaX: number, deltaY: number): BezierCurve;
reverse(): BezierCurve;
}
export declare const isBezierCurve: (path: Path) => path is BezierCurve;