From 834369c52b0bbc286acc7729992694d0d9d2133a Mon Sep 17 00:00:00 2001 From: Bradley Hill Date: Wed, 21 Nov 2018 10:49:49 -0600 Subject: [PATCH] Add optional `transform` property to the `IEvent` interface. --- types/fabric/fabric-impl.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/fabric/fabric-impl.d.ts b/types/fabric/fabric-impl.d.ts index 6b04bf8f11..485a603966 100644 --- a/types/fabric/fabric-impl.d.ts +++ b/types/fabric/fabric-impl.d.ts @@ -140,6 +140,7 @@ interface IDataURLOptions { interface IEvent { e: Event; target?: Object; + transform?: { corner: string }; } interface IFillOptions {