survey-react-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.
18 lines (17 loc) • 577 B
TypeScript
import * as React from "react";
import { TextAreaModel } from "survey-core";
import { SurveyElementBase } from "../reactquestion_element";
interface ITextAreaProps {
    viewModel: TextAreaModel;
}
export declare class TextAreaComponent extends SurveyElementBase<ITextAreaProps, any> {
    private textareaRef;
    private initialValue;
    constructor(props: ITextAreaProps);
    get viewModel(): TextAreaModel;
    protected canRender(): boolean;
    componentDidMount(): void;
    componentWillUnmount(): void;
    protected renderElement(): React.JSX.Element;
}
export {};