/** * TODO: YUIDoc_comment * * @class IDOMElement * @extends IDisplayObjectContainer * @module StructureJS * @submodule interface * @interface */ interface IDOMElement { /** * @property checkCount */ checkCount: number; /** * @property element */ element: HTMLElement; /** * @property $element */ $element: JQuery; /** * @property isReference */ isReference: boolean; /** * @method getChild */ getChild(selector: string): any; /** * @method getChildren */ getChildren(selector?: string): Array; /** * @method removeChildAt */ removeChildAt(index: number, destroy?: boolean): any; /** * @method createComponents */ createComponents(componentList: Array): Array; } export default IDOMElement;