UNPKG

@skbkontur/db-viewer-ui

Version:

Database Viewer with custom configuration

10 lines (9 loc) 244 B
import { Condition } from './Condition'; import { Sort } from './Sort'; export type ObjectSearchRequest = { conditions: Condition[]; excludedFields: string[]; sorts: Sort[]; offset?: null | number; count?: null | number; };