import { SimpleVector2 } from "../math"; /** * TODO: * - getLastN(count: number): T[]; * - getFirstN(count: number): T[] */ export declare class Path2D { protected readonly points: readonly T[]; constructor(points: readonly T[]); get length(): number; get first(): T; get last(): T; getPoint(index: number): T; } //# sourceMappingURL=path-2d.d.ts.map