-
Notifications
You must be signed in to change notification settings - Fork 8
/
globals.d.ts
57 lines (49 loc) · 1.21 KB
/
globals.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
declare module "*.svg" {
const content: string;
export default content;
}
declare module "*.png";
declare module "windows-1252";
declare module "angular-expressions";
declare module "source-map-support";
declare module "fswin" {
namespace FsWin {
export interface Attributes {
readonly IS_HIDDEN: boolean;
}
}
interface FsWin {
getAttributes: (
path: string,
cb: (attributes?: FsWin.Attributes) => void
) => void;
getAttributesSync: (path: string) => FsWin.Attributes;
}
const fswin: FsWin;
export { FsWin };
export default fswin;
}
declare module "fswin/*.node" {
import fswin, { FsWin } from "fswin";
export { FsWin };
export default fswin;
}
// eslint-disable-next-line @typescript-eslint/naming-convention
declare const __static: string;
declare namespace NodeJS {
interface ProcessEnv {
AUTOLOAD: string;
AUTORELOAD?: "false" | "true";
CI?: "true";
FORCE_TRACKING: 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;
}
}