Base interface for Fabric.js object properties. ObjectType

interface ObjectType {
    evented: boolean;
    objectCaching: boolean;
    selectable: boolean;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

evented: boolean

Whether the object responds to events.

objectCaching: boolean

Whether to cache the object.

selectable: boolean

Whether the object is selectable.