projecte_ionic/node_modules/@angular-eslint/eslint-plugin-template/dist/utils/is-interactive-element/index.d.ts
2022-02-09 18:30:03 +01:00

8 lines
396 B
TypeScript
Executable file

import type { TmplAstElement } from '@angular/compiler';
/**
* Returns boolean indicating whether the given element is
* interactive on the DOM or not. Usually used when an element
* has a dynamic handler on it and we need to discern whether or not
* it's intention is to be interacted with on the DOM.
*/
export declare function isInteractiveElement(node: TmplAstElement): boolean;