UNPKG

@nbxx/nb-input

Version:
14 lines (13 loc) 433 B
import { EventEmitter, OnDestroy } from "@angular/core"; import { NbSortingService } from "./nb-sorting.service"; export declare class NbSortingComponent implements OnDestroy { private sortingService; onSorted: EventEmitter<SortInfo>; private subscription; ngOnDestroy(): void; constructor(sortingService: NbSortingService); } export declare class SortInfo { code: string; sorting: string; }