@kre-form/survey
Version:
15 lines (14 loc) • 633 B
TypeScript
import { OnInit, EventEmitter, OnChanges, SimpleChanges } from "@angular/core";
import { KreSurveyInfo } from "@kre-form/core";
import { CdkDragDrop } from '@angular/cdk/drag-drop';
import { DataService } from "../../service/data.service";
export declare class KreQuestionList implements OnInit, OnChanges {
dataService: DataService;
kreSurveyInfo: KreSurveyInfo;
questionTypeEvent: EventEmitter<any>;
addPageEvent: EventEmitter<any>;
constructor(dataService: DataService);
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
dropQuestion(event: CdkDragDrop<string[]>): void;
}