@shons/next-configify
Version:
NestJS Config on Next Steroids
10 lines (9 loc) • 430 B
TypeScript
import { ValueDecoratedKey } from '../decorators';
export declare class ConfigurationRegistry {
private static readonly registry;
static registerTarget(type: any): void;
static registerAttribute(target: any, attribute: string): void;
static getRegistry(): any[];
static getValueDecoratedAttributes(target: any): string[];
static getValueDecoratedKey(instance: any, attribute: string): ValueDecoratedKey;
}