UNPKG

impair

Version:

impair is a React framework bringing several programming concepts together in order to provide a foundation for a layered, scalable, performant and enterprise level react application.

12 lines (11 loc) 488 B
import { RefObject } from 'react'; import { DependencyContainer } from 'tsyringe'; import { Registrations } from '../types'; type RegisteredContainerParams = { services: Registrations; sharedContainerRef?: RefObject<DependencyContainer | undefined>; props?: object; initializeSingletons?: boolean; }; export declare function useRegisteredContainer({ services, sharedContainerRef, props, initializeSingletons, }: RegisteredContainerParams): DependencyContainer; export {};