@nbxx/nb-input
Version:
Angular - nbinput
12 lines (11 loc) • 399 B
TypeScript
import { OnDestroy } from "@angular/core";
import { NbSortingService } from "./nb-sorting.service";
export declare class NbSortingItemComponent implements OnDestroy {
private sortingService;
_sorting: '' | 'asc' | 'desc';
code: string;
onToggleSort(event: any): void;
private subscription;
ngOnDestroy(): void;
constructor(sortingService: NbSortingService);
}