UNPKG

@progress/kendo-angular-treeview

Version:
22 lines (21 loc) 714 B
/**----------------------------------------------------------------------------------------- * 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 }