UNPKG

@nestjs-mod/common

Version:

A collection of utilities for unifying NestJS applications and modules

11 lines (10 loc) 1.97 kB
import { NestModuleCategory } from './types'; export declare const NEST_MODULES_ENVIRONMENTS_DESCRIPTION = "Variables with primitive types used in the module, the values of which can be obtained from various sources, such as: process.env or consul key value."; export declare const NEST_MODULES_CONFIGURATION_DESCRIPTION = "Variables of primitive and complex types that are used in the module; values for them must be passed when connecting the module to the application."; export declare const NEST_MODULES_STATIC_ENVIRONMENTS_DESCRIPTION = "Static variables with primitive types used in the module and can be used at the time of generating module metadata (import, controllers), the values of which can be obtained from various sources, such as: process.env or consul key value."; export declare const NEST_MODULES_STATIC_CONFIGURATION_DESCRIPTION = "Static variables of primitive and complex types that are used in the module and can be used at the time of generating module metadata (import, controllers); values for them must be passed when connecting the module to the application."; export declare const NEST_MODULES_FEATURE_CONFIGURATION_DESCRIPTION = "Feature variables of primitive and complex types that can be added to the current module from other modules (example: a transport for sending a message can be defined as a generalized interface, but the implementation itself will be added from a module for working with a specific transport or from an integration module)."; export declare const NEST_MODULES_FEATURE_ENVIRONMENTS_DESCRIPTION = "Feature variables with primitive types used in the module, the values of which can be obtained from various sources, such as: process.env or consul key value."; export declare const NEST_MODULE_CATEGORY_TITLE: Record<NestModuleCategory, string>; export declare const NEST_MODULE_CATEGORY_DESCRIPTION: Record<NestModuleCategory, string>; export declare const PROJECT_SCRIPTS_DESCRIPTIONS: Record<string, string>;