import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace queryOptionEnum { enum Id { NO_AGGREGATION = "no-aggregation", IGNORE_DATE_RANGE = "ignore-date-range", IGNORE_INVALID_FIELD = "ignore-invalid-field", HIDE_IDS = "hide-id-values", HIDE_NAMES = "hide-name-values", SAVE_SELECT = "save-select", SAVE_FILTER = "save-filter", SAVE_ORDER = "save-order", SAVE_DATE = "save-date", SAVE_LIMIT = "save-limit" } type Type = typeof Id; const Table: Record; const Title: { [x: string]: string; }; interface Service extends enumeration.Service { } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }