Skip to content

Commit

Permalink
Chore: #104 updateStatus 함수 JSDoc 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Seok93 committed Sep 8, 2024
1 parent 151dc7a commit 7824196
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/services/taskService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import type { TaskListWithStatus, TaskOrderForm } from '@/types/TaskType';
*
* @export
* @async
* @param {Project['projectId']} projectId - 대상 프로젝트 ID
* @param {Project['projectId']} projectId - 대상 프로젝트 ID
* @param {AxiosRequestConfig} [axiosConfig={}] - axios 요청 옵션 설정 객체
* @returns {Promise<AxiosResponse<TaskListWithStatus[]>>}
*/
Expand All @@ -22,9 +22,9 @@ export async function findTaskList(projectId: Project['projectId'], axiosConfig:
*
* @export
* @async
* @param {Project['projectId']} projectId
* @param {TaskOrder} newOrder
* @param {AxiosRequestConfig} [axiosConfig={}]
* @param {Project['projectId']} projectId - 프로젝트 ID
* @param {TaskOrder} newOrderData - 새로 정렬된 일정 목록 객체
* @param {AxiosRequestConfig} [axiosConfig={}] - axios 요청 옵션 설정 객체
* @returns {Promise<AxiosResponse<void>>}
*/
export async function updateTaskOrder(
Expand Down

0 comments on commit 7824196

Please sign in to comment.