Skip to content

Commit ccb94ff

Browse files
committed
🩹 Export missing types
1 parent 37d4938 commit ccb94ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎src/api/graphics.ts‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export type PolyLineOpts = StrokeProps & FillProps & TransformProps;
168168
export type LineCap = 'butt' | 'round' | 'square';
169169
export type LineJoin = 'miter' | 'round' | 'bevel';
170170

171-
type StrokeProps = {
171+
export type StrokeProps = {
172172
/**
173173
* The width of stroked lines in pt.
174174
*/
@@ -213,7 +213,7 @@ type StrokeProps = {
213213
lineDash?: number[];
214214
};
215215

216-
type FillProps = {
216+
export type FillProps = {
217217
/**
218218
* The color to use for filling the shape.
219219
*/
@@ -224,7 +224,7 @@ type FillProps = {
224224
fillOpacity?: number;
225225
};
226226

227-
type TransformProps = {
227+
export type TransformProps = {
228228
/**
229229
* Moves the element by `x` and `y`.
230230
*/

0 commit comments

Comments
 (0)