@vert/core
Version:
Library to build OOP applications which are based on Vue.
13 lines (12 loc) • 389 B
TypeScript
import { TConstructor, TProviders } from '../types';
declare abstract class InjectionUtils {
/**
* Class a class that has already been injected.
*
* @param {*} targetClass
* @param {TProviders} Providers
* @return {*}
*/
static createInjectedConstructor(targetClass: TConstructor, Providers: TProviders): any;
}
export { InjectionUtils };