@solidgrounds/core
Version:
Dependency injection container
9 lines (8 loc) • 401 B
TypeScript
import { SF, ServiceFactoryReference } from './Value';
export declare type ServiceReferenceFactoryInterface = <T>(sf: SF<T>) => ServiceFactoryReference<T>;
/**
* The core for solidgrounds connecting system.
*
* Original Service Factory --> Trivially man in the middle --> Service Factory Reference.
*/
export declare const asServiceFactoryReference: <T>(sf: SF<T>) => ServiceFactoryReference<T>;