import { IDirectionsWrapper, IDirectionWrapper, IIndexWrapper, IMultiWrapper, INameWrapper, IPayloadWrapper } from '../definitions.interface'; /** * @stable [17.10.2019] */ export declare enum SortDirectionsEnum { ASC = 0, DESC = 1 } /** * @stable [17.10.2019] */ export interface ISortDirectionEntity extends INameWrapper, IIndexWrapper, IMultiWrapper, IDirectionWrapper { } /** * @stable [17.10.2019] */ export interface ISortDirectionPayloadEntity extends IPayloadWrapper { } /** * @redux-entity * @stable [08.05.2020] */ export interface IReduxSortDirectionsEntity { [name: string]: ISortDirectionEntity; } /** * @entity * @stable [08.05.2020] */ export interface ISortDirectionsEntity extends IDirectionsWrapper { }