projecte_ionic/node_modules/@angular-eslint/eslint-plugin-template/dist/utils/get-attribute-value.d.ts
2022-02-09 18:30:03 +01:00

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;