UNPKG

@equantic/linq

Version:
7 lines (6 loc) 195 B
import { FieldPath } from '../base.js'; export type SortingDirection = 'asc' | 'desc'; export interface ISorting<T extends object> { column: FieldPath<T>; direction?: SortingDirection; }