Interface IWidget

interface IWidget {
    isWidget: true;
    object: any;
    attach(object): this;
    detach(): this;
    dispose?(): void;
    update?(): void;
}

Implemented by

Properties

isWidget: true
object: any

Methods

Generated using TypeDoc