diff options
| author | Hanna <[email protected]> | 2022-07-27 02:22:59 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-07-27 00:22:59 +0000 |
| commit | e007abbc03d4c27e9c487a3f281eb7f9914488c8 (patch) | |
| tree | f119618f117261a31cc9cc6b1fa342a88915e0db /src/definitions/system.ts | |
| parent | 22a050e86fd4fb04e4232a9e57fb1602fd3944cc (diff) | |
| download | faker-e007abbc03d4c27e9c487a3f281eb7f9914488c8.tar.xz faker-e007abbc03d4c27e9c487a3f281eb7f9914488c8.zip | |
docs(definitions): minor formatting to definitions' types (#1172)
Diffstat (limited to 'src/definitions/system.ts')
| -rw-r--r-- | src/definitions/system.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/definitions/system.ts b/src/definitions/system.ts index c6aa16c7..b344fad4 100644 --- a/src/definitions/system.ts +++ b/src/definitions/system.ts @@ -1,13 +1,14 @@ import type { LocaleEntry } from './definitions'; /** - * The possible definitions related to files and the system. + * 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. */ @@ -15,7 +16,7 @@ export type SystemDefinitions = LocaleEntry<{ }>; /** - * The mime type entry details. + * The mime-type entry details. */ export interface SystemMimeTypeEntryDefinitions { source?: string; |
