From 6349e9c528f6f669a64d502f4a2f17c4e55c9304 Mon Sep 17 00:00:00 2001 From: Arnab Chatterjee Date: Mon, 11 Sep 2023 16:56:18 +0530 Subject: [PATCH] refactor: add file level comment --- packages/restapi/src/lib/spaceV2/joinAsSpeaker.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/restapi/src/lib/spaceV2/joinAsSpeaker.ts b/packages/restapi/src/lib/spaceV2/joinAsSpeaker.ts index cf4bfd1d5..f55aec8bc 100644 --- a/packages/restapi/src/lib/spaceV2/joinAsSpeaker.ts +++ b/packages/restapi/src/lib/spaceV2/joinAsSpeaker.ts @@ -1,3 +1,8 @@ +/** + * @file joinAsSpeaker + * defines a function that allows a user to join a space as a speaker in the SpaceV2 implmentation + */ + import { get } from './get'; import { SpaceV2 } from './SpaceV2'; import { approve } from './approve';