Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | export const users = [ { email: 'charles.lejosne@amalia.io', name: 'Charles', slackId: 'U0379D7G4MP', sonarId: 'charles45777', }, { email: 'gautier@amalia.io', name: 'Gautier', slackId: 'U053LD07S6A', sonarId: 'gautier-lefebvre32462', }, { email: 'sylvain@amalia.io', name: 'Sylvain', slackId: 'U016YARUSAD', sonarId: 'sylvain50519', }, { email: 'vincent@amalia.io', name: 'Vincent', slackId: 'U04BBSWRZMH', sonarId: 'vincent-persyn49163', }, ] as const; export type UsersEmails = (typeof users)[number]['email']; |