interface IMemoryTableimport { type IMemoryTable } from "https://dotland.deno.dev/x/pg_mem@3.0.3/mod.ts"; Type ParametersTPropertiesreadonlyname: stringreadonlyprimaryIndex: IndexDef | nilMethodsgetColumns(): Iterable<ColumnDef>List columns in this table on(event: TableEvent, handler: () => any): ISubscriptionSubscribe to an event on this table listIndices(): IndexDef[]List existing indices defined on this table insert(item: Partial<T>): T | nullInserts 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<keys extends (keyof T)[]>(template?: Partial<T> | nil, columns?: keys): Pick<T, ArrayToUnionOr<keys, keyof T>>[]Find all items matching a specific template