/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core'; import { VtsResizableService } from './resizable.service'; import * as i0 from "@angular/core"; export type VtsResizeDirection = 'top' | 'right' | 'bottom' | 'left' | 'topRight' | 'bottomRight' | 'bottomLeft' | 'topLeft'; export declare class VtsResizeHandleMouseDownEvent { direction: VtsResizeDirection; mouseEvent: MouseEvent | TouchEvent; constructor(direction: VtsResizeDirection, mouseEvent: MouseEvent | TouchEvent); } export declare class VtsResizeHandleComponent implements OnInit, OnDestroy { private vtsResizableService; private cdr; private elementRef; vtsDirection: VtsResizeDirection; readonly vtsMouseDown: EventEmitter; entered: boolean; private destroy$; constructor(vtsResizableService: VtsResizableService, cdr: ChangeDetectorRef, elementRef: ElementRef); ngOnInit(): void; onMousedown(event: MouseEvent | TouchEvent): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }