@noeldemartin/faker
Version:
Generate massive amounts of fake contextual data
26 lines (25 loc) • 626 B
TypeScript
import type { LocaleEntry } from './definitions';
/**
* The possible definitions related to files and operating systems.
*/
export declare 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;
}