UNPKG

@progress/kendo-angular-treelist

Version:

Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.

27 lines (26 loc) 1.32 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core'; import { DragAndDropService } from './drag-and-drop.service'; import { DragAndDropContext } from './context-types'; import * as i0 from "@angular/core"; /** * @hidden */ export declare class DropTargetDirective implements OnInit, OnDestroy { element: ElementRef; private service; context: DragAndDropContext; enter: EventEmitter<any>; leave: EventEmitter<any>; drop: EventEmitter<any>; private subscriptions; constructor(element: ElementRef, service: DragAndDropService); ngOnInit(): void; ngOnDestroy(): void; private eventArgs; static ɵfac: i0.ɵɵFactoryDeclaration<DropTargetDirective, never>; static ɵdir: i0.ɵɵDirectiveDeclaration<DropTargetDirective, "[kendoDropTarget]", never, { "context": { "alias": "context"; "required": false; }; }, { "enter": "enter"; "leave": "leave"; "drop": "drop"; }, never, never, true, never>; }