import { SortDirection } from './types';

export interface Sort {
    readonly propertyName: string;
    readonly direction: SortDirection;
}
