Update Utils.d.ts
parent
670aef93fc
commit
83f2bffe34
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue