From 9fddebe8432d66164d89c22af73f8ec64f05d2f1 Mon Sep 17 00:00:00 2001 From: robmandoe <39183315+robmandoe@users.noreply.github.com> Date: Fri, 11 May 2018 17:17:13 +1000 Subject: [PATCH] needs... objectCaching?: boolean; ...on IObjectOptions added... /** * When `true`, object is cached on an additional canvas. */ objectCaching?: boolean; to... interface IObjectOptions otherwise our developers need to make this change manually after every 'npm install' in our project --- types/fabric/fabric-impl.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/fabric/fabric-impl.d.ts b/types/fabric/fabric-impl.d.ts index e35b0ebe0d..13bde18c3e 100644 --- a/types/fabric/fabric-impl.d.ts +++ b/types/fabric/fabric-impl.d.ts @@ -2098,6 +2098,11 @@ interface IObjectOptions { */ backgroundColor?: string; + /** + * When `true`, object is cached on an additional canvas. + */ + objectCaching?: boolean; + /** * When defined, an object is rendered via stroke and this property specifies its color */