| 1234567891011121314151617181920212223 |
- import {ModelData} from '../types.js';
- import {Service} from '@e22m4u/js-service';
- import {WhereClause} from './filter-clause.js';
- /**
- * Where clause tool.
- */
- export declare class WhereClauseTool extends Service {
- /**
- * Filter.
- *
- * @param entities
- * @param where
- */
- filter(entities: ModelData[], where: WhereClause | undefined): ModelData[];
- /**
- * Validate where clause.
- *
- * @param clause
- */
- static validateWhereClause(clause: WhereClause | undefined): void;
- }
|