diff options
Diffstat (limited to 'src/definitions/system.ts')
| -rw-r--r-- | src/definitions/system.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/definitions/system.ts b/src/definitions/system.ts index c3e25232..c6aa16c7 100644 --- a/src/definitions/system.ts +++ b/src/definitions/system.ts @@ -1,7 +1,9 @@ +import type { LocaleEntry } from './definitions'; + /** * The possible definitions related to files and the system. */ -export interface SystemDefinitions { +export type SystemDefinitions = LocaleEntry<{ /** * Returns some common file paths. */ @@ -10,7 +12,7 @@ export interface SystemDefinitions { * The mime type definitions with some additional information. */ mimeTypes: { [mimeType: string]: SystemMimeTypeEntryDefinitions }; -} +}>; /** * The mime type entry details. |
