1 | import { Tree } from '../tree';
|
2 | import { ElementRef } from '@angular/core';
|
3 | export declare class CapturedNode {
|
4 | private anElement;
|
5 | private aTree;
|
6 | constructor(anElement: ElementRef, aTree: Tree);
|
7 | canBeDroppedAt(element: ElementRef): boolean;
|
8 | contains(other: ElementRef): boolean;
|
9 | sameAs(other: ElementRef): boolean;
|
10 | get element(): ElementRef;
|
11 | get tree(): Tree;
|
12 | }
|