Interface IWidget

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

Implemented by

Properties

isWidget: true
object: any

Methods