@kre-form/survey
Version:
15 lines (14 loc) • 568 B
TypeScript
import { FieldType } from "@kre-form/core";
import { KreFormAntService } from "../tools/service";
import { CdkDragDrop } from "@angular/cdk/drag-drop";
export declare class KreSurveyDragDrop extends FieldType {
service: any;
readonly insertQuestionIndex: number;
constructor(dyService: KreFormAntService);
drop(event: CdkDragDrop<string[]>): void;
fieldOperational(sign: string): void;
logicQuestion(field: any): void;
copyQuestion(field: any): void;
delQuestion(field: any): void;
activeQuestion(field: any): void;
}