diff --git a/src/FindCursor.ts b/src/FindCursor.ts index 0b183eb..fc92557 100644 --- a/src/FindCursor.ts +++ b/src/FindCursor.ts @@ -1,3 +1,6 @@ +/** + * @since 0.0.1 + */ import type * as Schema from "@effect/schema/Schema" import * as Data from "effect/Data" import * as Effect from "effect/Effect" diff --git a/src/TypedFindCursor.ts b/src/TypedFindCursor.ts index 8f7f590..17cf46e 100644 --- a/src/TypedFindCursor.ts +++ b/src/TypedFindCursor.ts @@ -1,3 +1,6 @@ +/** + * @since 0.0.1 + */ import * as Schema from "@effect/schema/Schema" import * as Data from "effect/Data" import * as Effect from "effect/Effect" diff --git a/src/index.ts b/src/index.ts index 9928cbb..171e583 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,6 +8,11 @@ export * as Collection from "./Collection.js" */ export * as Db from "./Db.js" +/** + * @since 0.0.1 + */ +export * as FindCursor from "./FindCursor.js" + /** * @since 0.0.1 */ @@ -17,3 +22,8 @@ export * as MongoClient from "./MongoClient.js" * @since 0.0.1 */ export * as MongoError from "./MongoError.js" + +/** + * @since 0.0.1 + */ +export * as TypedFindCursor from "./TypedFindCursor.js"