Add comments for getUnsignedReportsInProject in API

This commit is contained in:
Mattias 2024-04-02 17:11:30 +02:00
parent 1e1677fc57
commit 7c7755085e

View file

@ -160,6 +160,11 @@ interface API {
token: string,
): Promise<APIResponse<ProjectMember[]>>;
/** Gets all unsigned reports in a project.
* @param {string} projectName The name of the project.
* @param {string} token The authentication token.
* @returns {Promise<APIResponse<WeeklyReport[]>>} A promise resolving to an API response containing the list of unsigned reports.
*/
getUnsignedReportsInProject(
projectName: string,
token: string,