interface LibAdaptersimport { type LibAdapters } from "https://dotland.deno.dev/x/pg_mem@2.6.13/interfaces.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(queryLatency?: number): anyCreate 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 createMikroOrm(mikroOrmOptions: any, queryLatency?: number): Promise<any>Create a mikro-orm instance bound to this db