element-patch.directive.d.ts 761 B

1234567891011121314151617
  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 { ElementRef } from '@angular/core';
  6. import { NzSafeAny } from 'ng-zorro-antd/core/types';
  7. import * as i0 from "@angular/core";
  8. /**
  9. * A patch directive to select the element of a component.
  10. */
  11. export declare class NzElementPatchDirective {
  12. elementRef: ElementRef;
  13. get nativeElement(): NzSafeAny;
  14. constructor(elementRef: ElementRef);
  15. static ɵfac: i0.ɵɵFactoryDeclaration<NzElementPatchDirective, never>;
  16. static ɵdir: i0.ɵɵDirectiveDeclaration<NzElementPatchDirective, "[nzElement], [nz-element]", ["nzElement"], {}, {}, never, never, true, never>;
  17. }