igniteui-angular-sovn
Version:
Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps
24 lines (20 loc) • 487 B
text/typescript
import { Injectable } from '@angular/core';
import { ColumnType } from '../common/grid.interface';
/**
* This enumeration is used to configure whether the drop position is set before or after
* the target.
*/
export enum DropPosition {
BeforeDropTarget,
AfterDropTarget
}
/**
* @hidden
* @internal
*/
({ providedIn: 'root' })
export class IgxColumnMovingService {
public cancelDrop: boolean;
public icon: HTMLElement;
public column: ColumnType;
}