@formql/core
Version:
FormQL - A framework for building dynamic forms
15 lines (14 loc) • 390 B
TypeScript
import { GridPositionType } from './style.model';
export interface DndEvent {
sourceObjectId: string;
sourceWrapperId: string;
targetPositionId: string;
targetWrapperId: string;
targetIndexId: string;
positionType: GridPositionType;
}
export interface DndTransfer {
sourceObjectId: string;
sourceWrapperId: string;
targetIndexId: string;
}