aboutsummaryrefslogtreecommitdiff
path: root/src/definitions/system.ts
diff options
context:
space:
mode:
authorST-DDT <[email protected]>2024-05-25 21:45:31 +0200
committerGitHub <[email protected]>2024-05-25 21:45:31 +0200
commit558b959e0e2f791dab0ba2f500493ba7ddbd25e2 (patch)
tree80b1c5b8ef263534b70a0fad32586f2d68712d9c /src/definitions/system.ts
parentb97984c7a165df0b516cbba0806b7cd68d77fc52 (diff)
downloadfaker-558b959e0e2f791dab0ba2f500493ba7ddbd25e2.tar.xz
faker-558b959e0e2f791dab0ba2f500493ba7ddbd25e2.zip
refactor(locale)!: use snake case for all locale data (#2910)
Diffstat (limited to 'src/definitions/system.ts')
-rw-r--r--src/definitions/system.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/definitions/system.ts b/src/definitions/system.ts
index 86868c63..72f5c98a 100644
--- a/src/definitions/system.ts
+++ b/src/definitions/system.ts
@@ -7,12 +7,12 @@ export type SystemDefinition = LocaleEntry<{
/**
* Returns some common file paths.
*/
- directoryPaths: string[];
+ directory_paths: string[];
/**
* The mime type definitions with some additional information.
*/
- mimeTypes: { [mimeType: string]: SystemMimeTypeEntryDefinition };
+ mime_types: { [mimeType: string]: SystemMimeTypeEntryDefinition };
}>;
/**