blob: b344fad4fa616774b64df29c7893293d4071381a (
plain)
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
|
import type { LocaleEntry } from './definitions';
/**
* The possible definitions related to files and operating systems.
*/
export type SystemDefinitions = LocaleEntry<{
/**
* Returns some common file paths.
*/
directoryPaths: string[];
/**
* The mime type definitions with some additional information.
*/
mimeTypes: { [mimeType: string]: SystemMimeTypeEntryDefinitions };
}>;
/**
* The mime-type entry details.
*/
export interface SystemMimeTypeEntryDefinitions {
source?: string;
extensions?: string[];
compressible?: boolean;
charset?: string;
}
|