interface IMemoryTableimport { type IMemoryTable } from "https://dotland.deno.dev/x/pg_mem@2.6.13/mod.ts"; Type ParametersoptionalT = anyMethodson(event: TableEvent, handler: () => any): ISubscriptionSubscribe to an event on this table listIndices(): IndexDef[]List existing indices defined on this table insert(item: Partial<T>): TInserts a raw item into this table. ⚠ Neither the record you provided, nor the returned value are the actual item stored. You wont be able to mutate internal state. find(template?: Partial<T> | nil, columns?: (keyof T)[]): Iterable<T>Find all items matching a specific template