UNPKG

dino-core

Version:

A dependency injection framework for NodeJS applications

12 lines (11 loc) 343 B
export declare class DependencyExtractor { /** * Extract dependencies for the provided class if any * @param {Object} clazz the class the dependencies should be extracted for * * @returns {Array} * @public */ extractDependenciesFor(clazz: any): string[]; getArguments(definition: string): string[]; }