blob: cbbcc4bd472afb12ae20fd1d7ba1fc2bd86ad5ef [file] [log] [blame]
Adrià Vilanova Martínez2b50e912022-06-01 00:05:40 +02001import creditsRaw from './credits.json5';
2import i18nCreditsRaw from './i18n-credits.json5';
3
4interface Credit {
5 name: string;
6 url?: string;
7 author?: string;
8 license?: string;
9}
10
11type Credits = Credit[]
12
13interface CrowdinLang {
14 id: string;
15 name: string;
16}
17
18interface IntCredit {
19 name: string;
20 languages: CrowdinLang[];
21}
22
23type IntCredits = IntCredit[];
24
25export const credits: Credits = creditsRaw;
26export const i18nCredits: IntCredits = i18nCreditsRaw;