UNPKG

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.

17 lines (16 loc) 448 B
import { Base } from "./base"; declare class SurveyTaskModel { type: string; private timestamp; constructor(type: string); } export declare class SurveyTaskManagerModel extends Base { private taskList; constructor(); private onAllTasksCompleted; hasActiveTasks: boolean; runTask(type: string, func: (done: any) => void): SurveyTaskModel; waitAndExecute(action: any): void; private taskFinished; } export {};