resize-handles.component.d.ts 1.0 KB

12345678910111213141516171819
  1. /**
  2. * Use of this source code is governed by an MIT-style license that can be
  3. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  4. */
  5. import { OnChanges, SimpleChanges } from '@angular/core';
  6. import { NzCursorType, NzResizeDirection } from './resize-handle.component';
  7. import * as i0 from "@angular/core";
  8. export declare const DEFAULT_RESIZE_DIRECTION: NzResizeDirection[];
  9. export interface NzResizeHandleOption {
  10. direction: NzResizeDirection;
  11. cursorType: NzCursorType;
  12. }
  13. export declare class NzResizeHandlesComponent implements OnChanges {
  14. nzDirections: Array<NzResizeDirection | NzResizeHandleOption>;
  15. resizeHandleOptions: NzResizeHandleOption[];
  16. ngOnChanges(changes: SimpleChanges): void;
  17. static ɵfac: i0.ɵɵFactoryDeclaration<NzResizeHandlesComponent, never>;
  18. static ɵcmp: i0.ɵɵComponentDeclaration<NzResizeHandlesComponent, "nz-resize-handles", ["nzResizeHandles"], { "nzDirections": { "alias": "nzDirections"; "required": false; }; }, {}, never, never, true, never>;
  19. }