UNPKG

@solidgrounds/core

Version:
9 lines (8 loc) 401 B
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>;