ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
24 lines (23 loc) • 952 B
TypeScript
/**
* @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, OnChanges, SimpleChanges, TemplateRef } from '@angular/core';
import { Location } from '@angular/common';
import { NzPageHeaderFooterDirective } from './nz-page-header-cells';
export declare class NzPageHeaderComponent implements OnChanges {
private location;
isTemplateRefBackIcon: boolean;
isStringBackIcon: boolean;
nzBackIcon: string | TemplateRef<void> | null;
nzTitle: string | TemplateRef<void>;
nzSubtitle: string | TemplateRef<void>;
readonly nzBack: EventEmitter<void>;
nzPageHeaderFooter: ElementRef<NzPageHeaderFooterDirective>;
constructor(location: Location);
ngOnChanges(changes: SimpleChanges): void;
onBack(): void;
}