fork of hey-api/openapi-ts because I need some additional things
1type Person = {
2 github: string;
3 name: string;
4};
5
6export const dmitriyBrolnickij: Person = {
7 github: 'https://github.com/brolnickij',
8 name: 'Dmitriy Brolnickij',
9};
10
11export const jacobCohen: Person = {
12 github: 'https://github.com/jacobinu',
13 name: 'Jacob Cohen',
14};
15
16export const joshHemphill: Person = {
17 github: 'https://github.com/josh-hemphill',
18 name: 'Josh Hemphill',
19};
20
21export const maxScopp: Person = {
22 github: 'https://github.com/max-scopp',
23 name: 'Max Scopp',
24};
25
26export const sebastiaanWouters: Person = {
27 github: 'https://github.com/SebastiaanWouters',
28 name: 'Sebastiaan Wouters',
29};