UNPKG

@mdf.js/service-registry

Version:

MMS - API - Service Registry

11 lines 490 B
import { CustomSetting } from './CustomSetting.t'; import { ServiceRegistryOptions } from './ServiceRegistrySettings.i'; /** * Service setting interface * Merge in the object the service registry settings and the custom settings. */ export interface ServiceSetting<CustomSettings extends Record<string, CustomSetting> = Record<string, CustomSetting>> extends ServiceRegistryOptions { /** Custom settings */ custom: CustomSettings; } //# sourceMappingURL=ServiceSetting.i.d.ts.map