ThreePipe
    Preparing search index...

    Interface IWidget

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

    Implemented by

    Index

    Properties

    isWidget: true
    object: any

    Methods

    • Parameters

      • OptionalsetDirty: boolean

      Returns void