UNPKG

ng-dynamic-mf

Version:

[![npm](https://img.shields.io/npm/v/ng-dynamic-mf?color=%2300d26a&style=for-the-badge)](https://www.npmjs.com/package/ng-dynamic-mf) [![Sonar Quality Gate](https://img.shields.io/sonar/quality_gate/LoaderB0T_ng-dynamic-mf?server=https%3A%2F%2Fsonarcloud

21 lines (20 loc) 826 B
type OptionalSettings = { modulePath: string; environmentPath: string; /** * Describes how the environment variables should be resolved. * - `none`: No environment variables are loaded. * - `loadAndReuse` *(default)*: The environment variables are loaded and reused from existing loaded environments. * - `load`: The environment variables are loaded, but none are reused. * - `reuse`: The environment variables are reused from existing loaded environments but not loaded. */ loadEnvironment: 'none' | 'loadAndReuse' | 'load' | 'reuse'; }; type RequiredSettings = { type: 'host'; } | { type: 'remote'; }; export type AppStartupSettings = Partial<OptionalSettings> & RequiredSettings; export type AppStartupSettingsInternal = OptionalSettings & RequiredSettings; export {};