ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
18 lines (17 loc) • 712 B
TypeScript
/**
* 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, OnChanges, SimpleChanges, TemplateRef } from '@angular/core';
import { NzSafeAny } from 'ng-zorro-antd/core/types';
import { NzTableSortOrder } from '../table.types';
export declare class NzTableSortersComponent implements OnChanges {
private elementRef;
sortDirections: NzTableSortOrder[];
sortOrder: NzTableSortOrder;
contentTemplate: TemplateRef<NzSafeAny> | null;
isUp: boolean;
isDown: boolean;
constructor(elementRef: ElementRef);
ngOnChanges(changes: SimpleChanges): void;
}