From bbceeec340e348e26f80879ea507a5b5f9b0ea8a Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Wed, 15 May 2024 21:55:57 -0300 Subject: [PATCH] Add jsdoc documentation --- packages/typescript/Quran/src/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/typescript/Quran/src/index.ts b/packages/typescript/Quran/src/index.ts index 51a9701..16295bf 100644 --- a/packages/typescript/Quran/src/index.ts +++ b/packages/typescript/Quran/src/index.ts @@ -20,7 +20,10 @@ class Quran { locale: TLocale; surahs: Surah[]; - static get locales(): Array { + /** + * @returns {Array} The available locales + */ + static get locales(): TLocale[] { return ["ar", "en"]; }