ngx-ui-hero
Version:
Simple, fast and reliable utilities for Angular.
17 lines (16 loc) • 893 B
TypeScript
import { OnInit } from '@angular/core';
import { NgModel } from '@angular/forms';
import { ElementBase } from '../../base/element-base';
import { InputFormsConfig } from '../../input-forms-config';
import * as i0 from "@angular/core";
export declare class InputTextareaComponent extends ElementBase<string> implements OnInit {
config: InputFormsConfig;
placeholder: string;
maxlength: number;
model: NgModel;
identifier: string;
constructor(validators: Array<any>, asyncValidators: Array<any>, config: InputFormsConfig);
ngOnInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextareaComponent, [{ optional: true; }, { optional: true; }, null]>;
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextareaComponent, "input-textarea", never, { "placeholder": "placeholder"; "maxlength": "maxlength"; }, {}, never, never, false, never>;
}