-
Notifications
You must be signed in to change notification settings - Fork 130
/
deps.ts
22 lines (16 loc) · 1.1 KB
/
deps.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export * as ConsoleColor from "https://deno.land/x/[email protected]/mod.ts";
// NOTE: Migrate to the official https://github.com/aghussb/dex when it's updated to the
// latest deno version.
export { default as SQLQueryBuilder } from "https://raw.githubusercontent.com/Zhomart/dex/930253915093e1e08d48ec0409b4aee800d8bd0c/mod-dyn.ts";
export { camelCase, snakeCase } from "https://deno.land/x/[email protected]/mod.ts";
export {
Client as MySQLClient,
configLogger as configMySQLLogger,
Connection as MySQLConnection,
} from "https://deno.land/x/[email protected]/mod.ts";
export type { LoggerConfig } from "https://deno.land/x/[email protected]/mod.ts";
export { Client as PostgresClient } from "https://deno.land/x/[email protected]/mod.ts";
export { DB as SQLiteClient } from "https://deno.land/x/[email protected]/mod.ts";
export { MongoClient as MongoDBClient, Bson } from "https://deno.land/x/[email protected]/mod.ts";
export type { ConnectOptions as MongoDBClientOptions } from "https://deno.land/x/[email protected]/mod.ts";
export type { Database as MongoDBDatabase } from "https://deno.land/x/[email protected]/src/database.ts";