From 9f7e6cb560953decd7336eb20e7dca4e18a37ccb Mon Sep 17 00:00:00 2001 From: BradleyHill Date: Wed, 27 Mar 2019 15:18:35 -0500 Subject: [PATCH] fabric - add more missing props to IEvent.transform (Transform should really be a strongly typed object) (#34272) --- types/fabric/fabric-impl.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/fabric/fabric-impl.d.ts b/types/fabric/fabric-impl.d.ts index cd52bd54e5..d800fe01bc 100644 --- a/types/fabric/fabric-impl.d.ts +++ b/types/fabric/fabric-impl.d.ts @@ -143,7 +143,7 @@ interface IDataURLOptions { interface IEvent { e: Event; target?: Object; - transform?: { corner: string }; + transform?: { corner: string, original: Object, width: number }; } interface IFillOptions {