mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
22 lines
923 B
TypeScript
22 lines
923 B
TypeScript
// Loaded from https://deno.land/x/denodb@v1.0.18/deps.ts
|
|
|
|
|
|
export * as ConsoleColor from "https://deno.land/x/colorlog@v1.0/mod.ts";
|
|
|
|
export { default as SQLQueryBuilder } from "https://raw.githubusercontent.com/denjucks/dex/master/mod.ts";
|
|
|
|
export { camelCase, snakeCase } from "https://deno.land/x/case/mod.ts";
|
|
|
|
export { Client as PostgresClient } from "https://raw.githubusercontent.com/deno-postgres/deno-postgres/master/mod.ts";
|
|
|
|
export {
|
|
Client as MySQLClient,
|
|
Connection as MySQLConnection,
|
|
} from "https://deno.land/x/mysql/mod.ts";
|
|
|
|
export { DB as SQLiteClient } from "https://deno.land/x/sqlite@v2.3.1/mod.ts";
|
|
|
|
export { MongoClient as MongoDBClient } from "https://deno.land/x/mongo@v0.20.0/mod.ts";
|
|
export type { ConnectOptions as MongoDBClientOptions } from "https://deno.land/x/mongo@v0.20.0/mod.ts";
|
|
export type { Database as MongoDBDatabase } from "https://deno.land/x/mongo@v0.20.0/src/database.ts";
|