Type Alias DoneChallengeListResponseDto

DoneChallengeListResponseDto: {
    challenges: {
        authorName: string | null;
        createdAt: string;
        emoji: string;
        endedAt: string;
        id: string;
        isWrittenByAdmin: boolean;
        joined: boolean;
        memberCount: number;
        progress: number;
        spaceId: string;
        startedAt: string;
        state: "BEFORE_START" | "ONGOING" | "FINISHED";
        title: string;
        totalProgress: number;
        totalTaskCount: number;
    }[];
}