4 lines
381 B
TypeScript
Executable file
4 lines
381 B
TypeScript
Executable file
import type { TmplAstElement } from '@angular/compiler';
|
|
import { PROPERTY } from './constants';
|
|
export declare function getAttributeValue<T extends string | number | boolean = string>(node: TmplAstElement, attributeName: string): T | string | null | typeof PROPERTY;
|
|
export declare function notAnAttributeOrIsProperty(attribute: unknown): attribute is null | typeof PROPERTY;
|