ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
28 lines (27 loc) • 1.14 kB
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 { ChangeDetectorRef, OnDestroy } from '@angular/core';
import { NzConfigService } from 'ng-zorro-antd/core/config';
import { BooleanInput } from 'ng-zorro-antd/core/types';
import { NzCollapsePanelComponent } from './collapse-panel.component';
export declare class NzCollapseComponent implements OnDestroy {
nzConfigService: NzConfigService;
private cdr;
static ngAcceptInputType_nzAccordion: BooleanInput;
static ngAcceptInputType_nzBordered: BooleanInput;
nzAccordion: boolean;
nzBordered: boolean;
nzExpandIconPosition: 'left' | 'right';
private listOfNzCollapsePanelComponent;
private destroy$;
constructor(nzConfigService: NzConfigService, cdr: ChangeDetectorRef);
addPanel(value: NzCollapsePanelComponent): void;
removePanel(value: NzCollapsePanelComponent): void;
click(collapse: NzCollapsePanelComponent): void;
ngOnDestroy(): void;
}