@lucasferreiralsf/angular-frontend-library
Version:
This is a set of custom angular components to easy the development of any Subway frontend project.
19 lines (18 loc) • 611 B
TypeScript
import { OnInit, QueryList, ChangeDetectorRef, AfterViewInit } from '@angular/core';
import { MatFormField } from '@angular/material';
export declare class MatFormFieldComponent implements OnInit, AfterViewInit {
protected cdr: ChangeDetectorRef;
appearence?: string;
showHint?: boolean;
hint?: string;
matSuffix?: boolean;
matPrefix?: boolean;
iconName?: string;
placeHolder?: string;
formName: string;
ngModel: any;
formfields: QueryList<MatFormField>;
constructor(cdr: ChangeDetectorRef);
ngOnInit(): void;
ngAfterViewInit(): void;
}