UNPKG

primeng

Version:

PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB

28 lines (27 loc) 503 B
import { TreeNode } from './treenode'; /** * Represents the event data for a tree node drag operation. * @group Interface */ export interface TreeNodeDragEvent { /** * Tree instance. */ tree?: any; /** * Node to be dragged. */ node?: TreeNode<any>; /** * Child nodes of dragged node. */ subNodes?: TreeNode<any>[]; /** * Index of dragged node. */ index?: number; /** * Scope of dragged node. */ scope?: any; }