@progress/kendo-angular-treeview
Version:
Kendo UI TreeView for Angular
22 lines (21 loc) • 714 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies where a dragged item is dropped relative to the target item.
*/
export declare enum DropPosition {
/**
* The item is dropped over the target item.
*/
Over = 0,
/**
* The item is dropped before the target item.
*/
Before = 1,
/**
* The item is dropped after the target item.
*/
After = 2
}