survey-core
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.
17 lines (16 loc) • 448 B
TypeScript
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 {};