File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ export type PolyLineOpts = StrokeProps & FillProps & TransformProps;
168168export type LineCap = 'butt' | 'round' | 'square' ;
169169export 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 */
You can’t perform that action at this time.
0 commit comments