Interface DrawingContainerEvent<T>

interface DrawingContainerEvent<T> {
    source: T;
    transactional: boolean;
    type: string;
}

Type Parameters

  • T

Hierarchy (view full)

Properties

source: T

The source of the ListenerEvent

transactional: boolean

If the event is being fired from within a transaction.

type: string