import { TYPE_SORT_TYPE } from './sort.type'; export interface ISort { mode: TYPE_SORT_TYPE; modeNumber: 1 | 2; fieldSort: string; reset: () => void; }