diff --git a/types/fabric/fabric-impl.d.ts b/types/fabric/fabric-impl.d.ts index 13bde18c3e..07c1227706 100644 --- a/types/fabric/fabric-impl.d.ts +++ b/types/fabric/fabric-impl.d.ts @@ -2254,6 +2254,11 @@ interface IObjectOptions { * Not used by fabric, just for convenience */ data?: any; + + /** + * Describes the object's corner position in canvas object absolute properties. + */ + aCoords?: {bl: Point, br: Point, tl: Point, tr: Point}; } export interface Object extends IObservable, IObjectOptions, IObjectAnimation { } export class Object {