survey-core
Version:
A framework-independent core of the SurveyJS Form Library that works with rendering packages. Use it to integrate dynamic, interactive JSON-based forms and surveys into your app, collect user responses, and send them to your own database.
19 lines (18 loc) • 651 B
TypeScript
import { Action } from "./actions/action";
import { LocalizableString } from "./localizablestring";
import { Question } from "./question";
export declare class QuestionSingleInputSummaryItem {
locText: LocalizableString;
btnEdit: Action;
btnRemove: Action;
constructor(locText: LocalizableString, btnEdit: Action, btnRemove: Action);
get showRemove(): boolean;
}
export declare class QuestionSingleInputSummary {
question: Question;
noEntry: LocalizableString;
constructor(question: Question, noEntry: LocalizableString);
items: Array<QuestionSingleInputSummaryItem>;
isEmpty(): boolean;
dispose(): void;
}