Update Utils.d.ts

pull/2817/head
mertsincan 2022-07-29 01:55:23 +01:00
parent 670aef93fc
commit 83f2bffe34
1 changed files with 3 additions and 2 deletions

View File

@ -43,8 +43,8 @@ export declare class DomHandler {
static isVisible(el: HTMLElement): boolean;
static invokeElementMethod(el: HTMLElement, methodName: string, args: any): void;
static isClient(): boolean;
static getFocusableElements(el: HTMLElement): any[];
static getFirstFocusableElement(el: HTMLElement): any;
static getFocusableElements(el: HTMLElement, selector?: string): any[];
static getFirstFocusableElement(el: HTMLElement, selector?: string): any;
static isClickable(el: HTMLElement): boolean;
static applyStyle(el: HTMLElement, style: any): void;
static isIOS(): boolean;
@ -66,6 +66,7 @@ export declare class ObjectUtils {
static removeAccents(str: any): string;
static isEmpty(value: any): boolean;
static isNotEmpty(value: any): boolean;
static isPrintableCharacter(char: string): boolean;
}
export declare namespace ZIndexUtils {