/** * @extends {CurveWithOpsImpl>} * @implements {Ed25519Curve>} */ export class AffineCurve extends CurveWithOpsImpl, Curve>> { constructor(); /** * @param {Point2} point * @returns {Point2} */ fromAffine(point: Point2): Point2; /** * @param {Point2} point * @returns {Point2} */ toAffine(point: Point2): Point2; } import type { Point2 } from "../../index.js"; import type { Curve } from "../../internal.js"; import { CurveWithOpsImpl } from "../common/index.js"; //# sourceMappingURL=AffineCurve.d.ts.map