Skip to content

Commit

Permalink
🩹 Export missing types
Browse files Browse the repository at this point in the history
  • Loading branch information
ralfstx committed Dec 14, 2024
1 parent 37d4938 commit ccb94ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/graphics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export type PolyLineOpts = StrokeProps & FillProps & TransformProps;
export type LineCap = 'butt' | 'round' | 'square';
export type LineJoin = 'miter' | 'round' | 'bevel';

type StrokeProps = {
export type StrokeProps = {
/**
* The width of stroked lines in pt.
*/
Expand Down Expand Up @@ -213,7 +213,7 @@ type StrokeProps = {
lineDash?: number[];
};

type FillProps = {
export type FillProps = {
/**
* The color to use for filling the shape.
*/
Expand All @@ -224,7 +224,7 @@ type FillProps = {
fillOpacity?: number;
};

type TransformProps = {
export type TransformProps = {
/**
* Moves the element by `x` and `y`.
*/
Expand Down

0 comments on commit ccb94ff

Please sign in to comment.