ng2-qgrid
Version:
Angular Grid
22 lines (21 loc) • 753 B
TypeScript
import { ElementRef, OnDestroy, OnInit, NgZone } from '@angular/core';
import { NgComponent } from '../../infrastructure/component/ng.component';
import { RootService } from '../../infrastructure/component/root.service';
export declare class ResizeDirective extends NgComponent implements OnInit, OnDestroy {
private root;
private zone;
private element;
private divider;
private listener;
private context;
key: any;
path: any;
canResize: any;
constructor(root: RootService, elementRef: ElementRef, document: any, zone: NgZone);
ngOnInit(): void;
ngOnDestroy(): void;
dragStart(e: DragEvent): void;
drag(e: MouseEvent): void;
dragEnd(): void;
private readonly model;
}