@nestjs-mod/common
Version:
A collection of utilities for unifying NestJS applications and modules
16 lines (15 loc) • 638 B
TypeScript
import { EnvModelOptions, EnvModelRootOptions } from '../types';
export declare function getFeatureDotEnvPropertyNameFormatter(featureName: string, rootOptions?: EnvModelRootOptions, options?: EnvModelOptions): {
new (...args: any[]): {
[x: string]: any;
};
apply(this: Function, thisArg: any, argArray?: any): any;
call(this: Function, thisArg: any, ...argArray: any[]): any;
bind(this: Function, thisArg: any, ...argArray: any[]): any;
toString(): string;
readonly length: number;
arguments: any;
caller: Function;
readonly name: string;
[Symbol.hasInstance](value: any): boolean;
};