UNPKG

anobis

Version:
25 lines (19 loc) 596 B
import { interfaces } from 'inversify'; import { TInputOptions } from '../../types/options/TInputOptions'; export interface IInversifyContainerFacade { /** * @param serviceIdentifier */ get <T> (serviceIdentifier: interfaces.ServiceIdentifier<T>): T; /** * @param serviceIdentifier * @param named */ getNamed <T> (serviceIdentifier: interfaces.ServiceIdentifier<T>, named: string | number | symbol): T; /** * @param sourceCode * @param options */ load (sourceCode: string, options: TInputOptions): void; unload (): void; }