label.component.d.ts 653 B

12345678910
  1. import { TypeEnum } from '../../model/components/type.enum';
  2. import * as i0 from "@angular/core";
  3. export declare class LabelComponent {
  4. text: string;
  5. type: TypeEnum | string;
  6. formControlName: string;
  7. hasError: boolean;
  8. static ɵfac: i0.ɵɵFactoryDeclaration<LabelComponent, never>;
  9. static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "ct-form-label", never, { "text": { "alias": "text"; "required": true; }; "type": { "alias": "type"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "hasError": { "alias": "hasError"; "required": false; }; }, {}, never, never, true, never>;
  10. }