type Person = { github: string; name: string; }; export const dmitriyBrolnickij: Person = { github: 'https://github.com/brolnickij', name: 'Dmitriy Brolnickij', }; export const jacobCohen: Person = { github: 'https://github.com/jacobinu', name: 'Jacob Cohen', }; export const joshHemphill: Person = { github: 'https://github.com/josh-hemphill', name: 'Josh Hemphill', }; export const maxScopp: Person = { github: 'https://github.com/max-scopp', name: 'Max Scopp', }; export const sebastiaanWouters: Person = { github: 'https://github.com/SebastiaanWouters', name: 'Sebastiaan Wouters', };