interface LibAdaptersimport { type LibAdapters } from "https://dotland.deno.dev/x/pg_mem@3.0.2/interfaces-private.ts"; MethodscreatePg(queryLatency?: number): { Pool: any; Client: any; }Create a PG module that will be equivalent to require('pg') createPgPromise(queryLatency?: number): anyCreate a pg-promise instance bound to this db createSlonik(opts?: SlonikAdapterOptions): Promise<any>Create a slonik pool bound to this db createPgNative(queryLatency?: number): anyCreate a pg-native instance bound to this db deprecatedcreateTypeormConnection(typeOrmConnection: any, queryLatency?: number): anyCreate a Typeorm connection bound to this db createTypeormDataSource(typeOrmConnection: any, queryLatency?: number): anyCreate a Typeorm data source bound to this db createKnex(queryLatency?: number, knexConfig?: object): anyCreate a Knex.js instance bound to this db createKysely(queryLatency?: number, kyselyConfig?: object): anyCreate a Kysely instance bound to this db createMikroOrm(mikroOrmOptions: any, queryLatency?: number): Promise<any>Create a mikro-orm instance bound to this db createPostgresJsTag(queryLatency?: number): anyCreates a Postres.js sql tag bound to this db bindServer(opts?: BindServerOptions): Promise<BindServerResult>Binds a server to this instance