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
import participants from "./participants.json" | |
interface ParticipantProps { | |
name: string; | |
email: string; | |
not?: string[]; | |
} | |
class AmigoSecreto { | |
shuffle(array: ParticipantProps[]): ParticipantProps[] { |
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
import participants from "./participants.json" | |
import nodemailer from "nodemailer" | |
interface ParticipantProps { | |
name: string; | |
email: string; | |
not?: string[]; | |
} | |
interface ParticipantsSortedProps extends ParticipantProps { |
OlderNewer