Skip to content

Commit 67b2eb7

Browse files
committed
chore: Add missing documentation
1 parent 109ea02 commit 67b2eb7

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

packages/effect-firebase/src/lib/firestore/firestore-service.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ type FirestoreCRUD = {
5555
path: string,
5656
data: typeof Data.Type
5757
) => Effect.Effect<void, FirestoreError | UnknownException>;
58+
59+
/**
60+
* Remove a document from the Firestore database.
61+
* @param path - The path to the document.
62+
*/
5863
readonly remove: (
5964
path: string
6065
) => Effect.Effect<void, FirestoreError | UnknownException>;

0 commit comments

Comments
 (0)