lovelacejs/lib/entities/nodules/SortNodule.d.ts
2022-06-26 01:09:35 -05:00

12 lines
435 B
TypeScript

import { sortDirection, sortKey, sortNoduleConstructorProps, sortValueType } from '../../types/noduleTypes';
import { tableRow } from '../../types/tableTypes';
import Nodule from '../Nodule';
declare class SortNodule extends Nodule {
sortValueType: sortValueType;
sortDirection: sortDirection;
sortKey: sortKey;
constructor(props: sortNoduleConstructorProps);
export: () => tableRow[];
}
export default SortNodule;