UNPKG

@buka/nestjs-config

Version:
11 lines (10 loc) 271 B
export interface IConfigExistedKey { ignore: false; propertyKey: string | symbol; configKey?: string; } export interface IConfigIgnoredKey { ignore: true; propertyKey: string | symbol; } export type IConfigKey = IConfigExistedKey | IConfigIgnoredKey;