@versatiledatakit/data-pipelines
Version:
Data Pipelines help Data Engineers develop, deploy, run, and manage data processing workloads (called 'Data Job')
18 lines (17 loc) • 617 B
TypeScript
import { Criteria } from '@versatiledatakit/shared';
import { GridDataJobExecution } from '../../../model';
/**
* ** Executions Generic string filter criteria.
*/
export declare class ExecutionsStringCriteria implements Criteria<GridDataJobExecution> {
private readonly _property;
private readonly _searchValue;
/**
* ** Constructor.
*/
constructor(property: keyof GridDataJobExecution, searchValue: GridDataJobExecution[Exclude<keyof GridDataJobExecution, 'deployment'>]);
/**
* @inheritDoc
*/
meetCriteria(executions: GridDataJobExecution[]): GridDataJobExecution[];
}