UNPKG

right-angled

Version:

Lightweight and easy to use angular data grids. Integrates with your markup and styles rather than generating its own.

28 lines 645 B
/** * Represents sort direction that applied as parameter by {@link SortParameter} class. */ export declare enum SortDirection { /** * Ascending sort order. */ Asc = 0, /** * Descending sort order. */ Desc = 1 } export type SortDirectionStr = 'Asc' | 'Desc'; /** * Represents sorting parameter applied to the server request by {@link RTSortingsService}. */ export interface SortParameter { /** * Sort direction. */ direction: SortDirection; /** * Name of the field by which sorting must be performed. */ fieldName: string; } //# sourceMappingURL=sort-parameter.d.ts.map