UNPKG

reactant-di

Version:

A dependency injection lib for Reactant

12 lines 404 B
import { ServiceIdentifier } from './interfaces'; declare const defaultUndefinedValue: unique symbol; /** * > NOTE: does not support Changing dependencies without `@inject`. */ declare class Optional { identifier: ServiceIdentifier<any>; constructor(identifier: ServiceIdentifier<any>); get key(): symbol; } export { Optional, defaultUndefinedValue }; //# sourceMappingURL=optional.d.ts.map