survey-angular-ui
Version:
survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.
14 lines (13 loc) • 678 B
TypeScript
import { ElementRef, OnDestroy } from "@angular/core";
import { TextAreaModel } from "survey-core";
import { EmbeddedViewContentComponent } from "../../embedded-view-content.component";
import * as i0 from "@angular/core";
export declare class TextAreaComponent extends EmbeddedViewContentComponent implements OnDestroy {
model: TextAreaModel;
elementContentRef: ElementRef<HTMLElement>;
get value(): string;
ngAfterViewInit(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "sv-text-area", never, { "model": "model"; }, {}, never, never>;
}