tree-drop-indicator.component.d.ts 1.1 KB

1234567891011121314151617181920
  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 { ChangeDetectorRef, OnChanges, SimpleChanges } from '@angular/core';
  6. import { NgStyleInterface } from 'ng-zorro-antd/core/types';
  7. import * as i0 from "@angular/core";
  8. export declare class NzTreeDropIndicatorComponent implements OnChanges {
  9. private cdr;
  10. dropPosition?: number;
  11. level: number;
  12. direction: string;
  13. style: NgStyleInterface;
  14. constructor(cdr: ChangeDetectorRef);
  15. ngOnChanges(_changes: SimpleChanges): void;
  16. renderIndicator(dropPosition: number, direction?: string): void;
  17. static ɵfac: i0.ɵɵFactoryDeclaration<NzTreeDropIndicatorComponent, never>;
  18. static ɵcmp: i0.ɵɵComponentDeclaration<NzTreeDropIndicatorComponent, "nz-tree-drop-indicator", ["NzTreeDropIndicator"], { "dropPosition": { "alias": "dropPosition"; "required": false; }; "level": { "alias": "level"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; }, {}, never, never, true, never>;
  19. static ngAcceptInputType_level: unknown;
  20. }