Type Alias MyTaskListResponseDto
MyTaskListResponseDto: {
nextCursor: string | null;
tasks: {
challengeEmoji: string;
challengeId: string;
challengeTitle: string;
completedAt: string | null;
deadline: string;
defaultTags: string[];
done: boolean;
guide: string | null;
id: string;
index: number;
startedAt: string;
targetContentId: string | null;
title: string;
type:
| "CHECK_TASK"
| "CREATE_NOTE_POST"
| "CREATE_QUESTION_POST"
| "CREATE_POST_CHAT"
| "COMPLETE_CONTENT";
}[];
}