Module

x/pg_mem/interfaces-private.ts>IndexOp

An in memory postgres DB instance for your unit tests
Go to Latest
type alias IndexOp
import { type IndexOp } from "https://dotland.deno.dev/x/pg_mem@2.6.3/interfaces-private.ts";
definition: { type:
| "eq"
| "neq"
| "gt"
| "lt"
| "ge"
| "le"
; key: IndexKey; t: _Transaction; matchNull?: boolean; } | { type: "inside" | "outside"; lo: IndexKey; hi: IndexKey; t: _Transaction; } | { type: "nin"; keys: IndexKey[]; t: _Transaction; }