layout.component.d.ts 908 B

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 { Direction, Directionality } from '@angular/cdk/bidi';
  6. import { OnDestroy, OnInit, QueryList } from '@angular/core';
  7. import { NzSiderComponent } from './sider.component';
  8. import * as i0 from "@angular/core";
  9. export declare class NzLayoutComponent implements OnDestroy, OnInit {
  10. private directionality;
  11. listOfNzSiderComponent: QueryList<NzSiderComponent>;
  12. dir: Direction;
  13. private destroy$;
  14. constructor(directionality: Directionality);
  15. ngOnInit(): void;
  16. ngOnDestroy(): void;
  17. static ɵfac: i0.ɵɵFactoryDeclaration<NzLayoutComponent, never>;
  18. static ɵcmp: i0.ɵɵComponentDeclaration<NzLayoutComponent, "nz-layout", ["nzLayout"], {}, {}, ["listOfNzSiderComponent"], ["*"], true, never>;
  19. }