export type CurveWithFromToAffine = CurveWithOps & { toAffine: (point: T) => Point2; fromAffine: (point: Point2) => T; }; import type { CurveWithOps } from "./CurveWithOps.js"; import type { Point2 } from "../../index.js"; //# sourceMappingURL=CurveWithFromToAffine.d.ts.map