We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 913ae41 + c5490f1 commit b4a8159Copy full SHA for b4a8159
2 files changed
README.md
@@ -16,7 +16,7 @@
16
## Examples
17
18
```ts
19
-import { init, MongoClient } from "https://deno.land/x/mongo@v0.3.0/mod.ts";
+import { init, MongoClient } from "https://deno.land/x/mongo@v0.3.1/mod.ts";
20
21
// Initialize the plugin
22
await init();
mod.ts
@@ -1,4 +1,6 @@
1
-export { ClientOptions, MongoClient } from "./ts/client.ts";
2
-export { Database } from "./ts/database.ts";
3
-export { init } from "./ts/util.ts";
4
-export const VERSION = "v0.3.0";
+export * from "./ts/client.ts";
+export * from "./ts/collection.ts";
+export * from "./ts/database.ts";
+export * from "./ts/result.ts";
5
+export * from "./ts/util.ts";
6
+export const VERSION = "v0.3.1";
0 commit comments