/** * */ export interface SorterProps { /** * */ direction?: "ASC" | "DESC"; /** * */ property?: string; /** * */ root?: string; /** * */ sorterFn?(data1: any, data2: any): any; /** * TODO resolve Function to specific type */ transform?: Function; } export default SorterProps;