Skip to content

Commit

Permalink
Update api report
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenpetryk committed Jul 21, 2024
1 parent da223c4 commit a19f09f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .api-report/mafs.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,30 +164,30 @@ export interface MovablePointProps {
}

// @public (undocumented)
export interface OfXProps extends Omit<ParametricProps, "xy" | "t"> {
export interface OfXProps extends Omit<ParametricProps, "xy" | "domain" | "t"> {
// (undocumented)
domain?: vec.Vector2;
// (undocumented)
svgPathProps?: React_2.SVGProps<SVGPathElement>;
// (undocumented)
y: (x: number) => number;
}

// @public (undocumented)
export interface OfYProps extends Omit<ParametricProps, "xy" | "t"> {
export interface OfYProps extends Omit<ParametricProps, "xy" | "domain" | "t"> {
// (undocumented)
domain?: vec.Vector2;
// (undocumented)
svgPathProps?: React_2.SVGProps<SVGPathElement>;
// (undocumented)
x: (y: number) => number;
}

// Warning: (ae-forgotten-export) The symbol "ParametricPropsNew" needs to be exported by the entry point index.d.ts
// Warning: (ae-forgotten-export) The symbol "ParametricPropsLegacy" needs to be exported by the entry point index.d.ts
//
// @public (undocumented)
export interface ParametricProps extends Stroked {
maxSamplingDepth?: number;
minSamplingDepth?: number;
// (undocumented)
svgPathProps?: React_2.SVGProps<SVGPathElement>;
t: vec.Vector2;
xy: (t: number) => vec.Vector2;
}
export type ParametricProps = ParametricPropsNew | ParametricPropsLegacy;

// @public (undocumented)
export const Plot: {
Expand Down

0 comments on commit a19f09f

Please sign in to comment.