UNPKG

ng-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

25 lines (24 loc) 1.05 kB
/** * @license * Copyright Alibaba.com All Rights Reserved. * * 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 { ElementRef, EventEmitter, TemplateRef } from '@angular/core'; import { Location } from '@angular/common'; import { NzConfigService } from 'ng-zorro-antd/core/config'; import { NzPageHeaderBreadcrumbDirective, NzPageHeaderFooterDirective } from './page-header-cells'; export declare class NzPageHeaderComponent { private location; nzConfigService: NzConfigService; nzBackIcon: string | TemplateRef<void> | null; nzTitle?: string | TemplateRef<void>; nzSubtitle?: string | TemplateRef<void>; nzGhost: boolean; readonly nzBack: EventEmitter<void>; nzPageHeaderFooter?: ElementRef<NzPageHeaderFooterDirective>; nzPageHeaderBreadcrumb?: ElementRef<NzPageHeaderBreadcrumbDirective>; constructor(location: Location, nzConfigService: NzConfigService); onBack(): void; }