| 10 | import type { ActionConfig, Filter, QueryPagination, QueryTable, Sort } from './types' |
| 11 | |
| 12 | export interface IQueryModifier { |
| 13 | range: (from: number, to: number) => QueryModifier |
| 14 | toSql: () => string |
| 15 | } |
| 16 | |
| 17 | export class QueryModifier implements IQueryModifier { |
| 18 | protected pagination?: QueryPagination |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…