UNPKG

@nova-ts/core

Version:

A serverside framework used to build scalable application

16 lines (14 loc) 480 B
/** * Responsible for resolving configuration properties and injecting them into * class instances or class fields based on the `@Value` decorator. */ declare class ProprtyResolver { /** * Loads and injects all properties into classes or fields decorated with `@Value`, * and registers them in the `ApplicationContext`. * * This method is typically called during application bootstrap. */ static loadAllProperties(): void; } export { ProprtyResolver };