Skip to content

Commit

Permalink
fixed export and colon
Browse files Browse the repository at this point in the history
  • Loading branch information
asturur committed Sep 1, 2022
1 parent 45a46a4 commit 7ecd0c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/util/misc/matrix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type TTranslateMatrixArgs = {
translateY?: number;
}

type TScaleMatrixArgs = {
export type TScaleMatrixArgs = {
scaleX?: number;
scaleY?: number;
flipX?: boolean;
Expand Down
2 changes: 1 addition & 1 deletion src/util/misc/objectTransforms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,4 @@ export const sizeAfterTransform = (width: number, height: number, options: TScal
transformMatrix = calcDimensionsMatrix(options),
bbox = makeBoundingBoxFromPoints(points, transformMatrix);
return new Point(bbox.width, bbox.height);
},
};

0 comments on commit 7ecd0c5

Please sign in to comment.