/** * (c) Phan Trung Nguyên * User: nguyenpl117 * Date: 3/18/2020 * Time: 5:01 PM * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ export declare enum Op { eq = "=", not = "not", ne = "<>", gte = ">=", gt = ">", lte = "<=", lt = "<", is = "=", in = "in", notIn = "not in", like = "like", and = "AND", AND = "AND", or = "OR", OR = "OR" }