import {FindOperator} from "../FindOperator"; /** * Find Options Operator. * Example: { someField: Between(x, y) } */ export function Between(from: T|FindOperator, to: T|FindOperator) { return new FindOperator("between", [from, to] as any, true, true); }