mirror of
https://github.com/graphql-hive/console
synced 2026-05-24 09:38:26 +00:00
24 lines
501 B
TypeScript
24 lines
501 B
TypeScript
type Author = {
|
|
name: string;
|
|
link: `https://${string}`;
|
|
github?: string;
|
|
twitter?: string;
|
|
};
|
|
|
|
export const authors: Record<string, Author> = {
|
|
kamil: {
|
|
name: 'Kamil Kisiela',
|
|
link: 'https://twitter.com/kamilkisiela',
|
|
github: 'kamilkisiela',
|
|
},
|
|
laurin: {
|
|
name: 'Laurin Quast',
|
|
link: 'https://twitter.com/n1rual',
|
|
github: 'n1ru4l',
|
|
},
|
|
aleksandra: {
|
|
name: 'Aleksandra Sikora',
|
|
link: 'https://twitter.com/aleksandrasays',
|
|
github: 'beerose',
|
|
},
|
|
};
|