From f2fbee878d16019235c6dae53f07b75d2a71ef03 Mon Sep 17 00:00:00 2001 From: mertsincan Date: Mon, 3 Jul 2023 23:21:33 +0100 Subject: [PATCH] Update Utils.d.ts --- components/lib/utils/Utils.d.ts | 2 ++ 1 file changed, 2 insertions(+) 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;