diff --git a/components/lib/utils/Utils.d.ts b/components/lib/utils/Utils.d.ts index bc24c551f..7567f7bb6 100644 --- a/components/lib/utils/Utils.d.ts +++ b/components/lib/utils/Utils.d.ts @@ -23,6 +23,8 @@ export declare class DomHandler { static addStyles(el: HTMLElement, styles: object): void; static find(el: HTMLElement, selector: string): any[]; static findSingle(el: HTMLElement, selector: string): any; + static createElement(type: string, attributes: object, ...children: any): HTMLElement; + static setAttributes(el: HTMLElement, attributes: object): void; static getAttribute(el: HTMLElement, name: string): any; static isAttributeEquals(el: HTMLElement, name: string, value: any): boolean; static isAttributeNotEquals(el: HTMLElement, name: string, value: any): boolean;