-
-
Notifications
You must be signed in to change notification settings - Fork 622
Expand file tree
/
Copy pathConfigResponse.ts
More file actions
41 lines (40 loc) · 1.63 KB
/
Copy pathConfigResponse.ts
File metadata and controls
41 lines (40 loc) · 1.63 KB
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
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { EjsControls } from './EjsControls';
import type { MetadataMediaType } from './MetadataMediaType';
import type { NetplayICEServer } from './NetplayICEServer';
export type ConfigResponse = {
CONFIG_FILE_MOUNTED: boolean;
CONFIG_FILE_WRITABLE: boolean;
CONFIG_FILE_PARSE_ERROR: (string | null);
EXCLUDED_PLATFORMS: Array<string>;
EXCLUDED_SINGLE_EXT: Array<string>;
EXCLUDED_SINGLE_FILES: Array<string>;
EXCLUDED_MULTI_FILES: Array<string>;
EXCLUDED_MULTI_PARTS_EXT: Array<string>;
EXCLUDED_MULTI_PARTS_FILES: Array<string>;
DEFAULT_EXCLUDED_DIRS: Array<string>;
DEFAULT_EXCLUDED_FILES: Array<string>;
DEFAULT_EXCLUDED_EXTENSIONS: Array<string>;
PLATFORMS_BINDING: Record<string, string>;
PLATFORMS_VERSIONS: Record<string, string>;
SKIP_HASH_CALCULATION: boolean;
EJS_DEBUG: boolean;
EJS_CACHE_LIMIT: (number | null);
EJS_DISABLE_AUTO_UNLOAD: boolean;
EJS_DISABLE_BATCH_BOOTUP: boolean;
EJS_NETPLAY_ENABLED: boolean;
EJS_NETPLAY_ICE_SERVERS: Array<NetplayICEServer>;
EJS_SETTINGS: Record<string, Record<string, string>>;
EJS_CONTROLS: Record<string, EjsControls>;
SCAN_METADATA_PRIORITY: Array<string>;
SCAN_ARTWORK_PRIORITY: Array<string>;
SCAN_ARTWORK_PRIORITY_OVERRIDES: Record<string, Array<string>>;
SCAN_REGION_PRIORITY: Array<string>;
SCAN_LANGUAGE_PRIORITY: Array<string>;
SCAN_MEDIA: Array<string>;
GAMELIST_MEDIA_THUMBNAIL: MetadataMediaType;
GAMELIST_MEDIA_IMAGE: MetadataMediaType;
};