UNPKG

@versatiledatakit/data-pipelines

Version:

Data Pipelines help Data Engineers develop, deploy, run, and manage data processing workloads (called 'Data Job')

21 lines (20 loc) 673 B
import { Comparator } from '@versatiledatakit/shared'; import { GridDataJobExecution } from '../../../model/data-job-execution'; export declare class ExecutionDateComparator implements Comparator<GridDataJobExecution> { /** * ** Property path to value from GridDataJobExecution object. */ readonly property: keyof GridDataJobExecution; /** * ** Sort direction. */ readonly direction: 'ASC' | 'DESC'; /** * ** Constructor. */ constructor(property: keyof GridDataJobExecution, direction: 'ASC' | 'DESC'); /** * @inheritDoc */ compare(exec1: GridDataJobExecution, exec2: GridDataJobExecution): number; }