UNPKG

406 BTypeScriptView Raw
1import { Tree } from '../tree';
2import { ElementRef } from '@angular/core';
3export 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}