diff --git a/deps.ts b/deps.ts index 6cd216b..ce35e37 100644 --- a/deps.ts +++ b/deps.ts @@ -7,8 +7,6 @@ export { Client, Connection, } from "https://deno.land/x/mysql@2.1.0/mod.ts"; -// deno-fmt-ignore -export type ClientConfig = import("https://deno.land/x/mysql@2.1.0/mod.ts").ClientConfig; export { Join, Order, diff --git a/mod.ts b/mod.ts index 30bc564..ec22f8f 100644 --- a/mod.ts +++ b/mod.ts @@ -7,8 +7,6 @@ export { Where, } from "./deps.ts"; -export type ClientConfig = import("./deps.ts").ClientConfig; - export { dso } from "./src/dso.ts"; export * from "./src/field.ts"; export * from "./src/index.ts"; diff --git a/test.ts b/test.ts index baffdb1..46511b8 100644 --- a/test.ts +++ b/test.ts @@ -1,7 +1,5 @@ import { dso } from "./mod.ts"; import "./test/model.ts"; -import { ClientConfig } from "./deps.ts"; -import { MysqlClient } from "./src/MysqlClient.ts"; const config = { hostname: "127.0.0.1",