generated from nim-od/softeer-mono-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { QuizWinner, RacingWinner } from 'src/services/api/types/apiType.ts'; | ||
|
||
export function transformQuizWinnersToExcel(quizWinners: QuizWinner[]): object[] { | ||
return quizWinners.map((winner) => ({ | ||
이름: winner.name, | ||
이메일: winner.phoneNumber, | ||
당첨일: winner.postDate, | ||
})); | ||
} | ||
export function transformRaceWinnersToExcel(raceWinners: RacingWinner[]): object[] { | ||
return raceWinners.map((winner) => ({ | ||
등: winner.rank, | ||
이름: winner.name, | ||
이메일: winner.phoneNumber, | ||
공유링크: winner.clickNumber, | ||
팀: winner.team, | ||
})); | ||
} |