Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / shared / lib / interfaces / config.ts
blob9337a4325bf8b4773ecbb0758088d2cee184c142
1 import type { APP_NAMES, CLIENT_TYPES } from '../constants';
3 export interface ProtonConfig {
4     CLIENT_TYPE: CLIENT_TYPES;
5     CLIENT_SECRET: string;
6     APP_VERSION: string;
7     APP_NAME: APP_NAMES;
8     API_URL: string;
9     LOCALES: { [key: string]: string };
10     DATE_VERSION: string;
11     COMMIT: string;
12     BRANCH: string;
13     SENTRY_DSN: string;
14     SENTRY_DESKTOP_DSN?: string;
15     VERSION_PATH: string;