8 lines
396 B
TypeScript
Executable file
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;
|