-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathglobal.d.ts
40 lines (34 loc) · 1020 Bytes
/
global.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
declare module "*.module.css" {
const classes: Readonly<Record<string, string>>;
export default classes;
}
declare module "*.module.sass" {
const classes: Readonly<Record<string, string>>;
export default classes;
}
declare module "*.module.scss" {
const classes: Readonly<Record<string, string>>;
export default classes;
}
declare module "*.png" {
const content: string;
export default content;
}
declare module "source-map-support";
// eslint-disable-next-line @typescript-eslint/naming-convention
declare const __static: string;
declare namespace NodeJS {
interface ProcessEnv {
CACHE_PROVIDER: string;
SENTRY_DSN: string;
SENTRY_ORG: string;
SENTRY_URL: string;
TRACKER_FAKE_HREF?: string;
TRACKER_MATOMO_ID_SITE: string;
TRACKER_MATOMO_URL: string;
TRACKER_POSTHOG_API_KEY: string;
TRACKER_POSTHOG_URL: string;
TRACKER_PROVIDER: string;
}
}
declare module "react-d3-tree/lib/esm/index.js";