DomHandler hasCSSAnimation and hasCSSTransition added

This commit is contained in:
Tuğçe Küçükoğlu 2023-08-04 13:06:26 +03:00
parent 5455aa896b
commit c7c71e213f
2 changed files with 24 additions and 0 deletions

View file

@ -60,6 +60,8 @@ export declare class DomHandler {
static isIOS(): boolean;
static isAndroid(): boolean;
static isTouchDevice(): boolean;
static hasCSSAnimation(el: HTMLElement): boolean;
static hasCSSTransition(el: HTMLElement): boolean;
static exportCSV(csv: any, filename: string): void;
}