Update Utils.d.ts

pull/4107/head
mertsincan 2023-07-03 23:21:33 +01:00
parent 9247620421
commit f2fbee878d
1 changed files with 2 additions and 0 deletions

View File

@ -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;