transformation-matrix
Advanced tools
Comparing version 2.0.2 to 2.0.3
{ | ||
"name": "transformation-matrix", | ||
"version": "2.0.2", | ||
"version": "2.0.3", | ||
"description": "2d transformation matrix functions written in ES6 syntax. Tree shaking ready!", | ||
@@ -5,0 +5,0 @@ "main": "./build-commonjs/index.js", |
@@ -520,2 +520,3 @@ <!--------------------------------------------------------------------> | ||
- [Shuhei-Tsunoda](https://github.com/Shuhei-Tsunoda) | ||
- [antonyRoberts](https://github.com/antonyRoberts) | ||
@@ -184,2 +184,3 @@ declare module 'transformation-matrix' { | ||
declare module 'transformation-matrix/fromDefinition' { | ||
import { Point, Matrix } from 'transformation-matrix'; | ||
/** | ||
@@ -211,6 +212,7 @@ * Converts array of matrix descriptor to array of matrix | ||
**/ | ||
export function fromDefinition(...definitionOrArrayOfDefinition: Matrix[]): Matix[]; | ||
export function fromDefinition(...definitionOrArrayOfDefinition: Matrix[]): Matrix[]; | ||
} | ||
declare module 'transformation-matrix/fromTransformAttribute' { | ||
import { Point, Matrix } from 'transformation-matrix'; | ||
/** | ||
@@ -217,0 +219,0 @@ * Parser for SVG Trasform Attribute http://www.w3.org/TR/SVG/coords.html#TransformAttribute <br/> |
Sorry, the diff of this file is not supported yet
419484
6045
522