* Add a `<` condition * @param key - Property name * @param val - Property value
(key: K, val: MT[K])
| 386 | * @param val - Property value |
| 387 | */ |
| 388 | lt<K extends KeyOf<MT>>(key: K, val: MT[K]): this { |
| 389 | const w: Where<MT> = {}; |
| 390 | w[key] = {lt: val}; |
| 391 | return this.add(w); |
| 392 | } |
| 393 | |
| 394 | /** |
| 395 | * Add a `<=` condition |
no test coverage detected