Skip to content

Commit

Permalink
Merge pull request #473 from jaked/develop
Browse files Browse the repository at this point in the history
fix(geom-api): __samples attribute should be Partial<SamplingOpts>
  • Loading branch information
postspectacular committed Jun 5, 2024
2 parents f5e18e9 + 409fbdd commit ee6406e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/geom-api/src/shape.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export interface Attribs {
/**
* Shape resampling options/resolution.
*/
__samples?: SamplingOpts | number;
__samples?: Partial<SamplingOpts> | number;
/**
* Control attribute to define the number of fractional digits for numeric
* values in the serialized SVG string.
Expand Down

0 comments on commit ee6406e

Please sign in to comment.