UNPKG

tsyringe

Version:

Lightweight dependency injection container for JavaScript/TypeScript

6 lines (5 loc) 195 B
import Provider from "./provider"; export default interface ValueProvider<T> { useValue: T; } export declare function isValueProvider<T>(provider: Provider<T>): provider is ValueProvider<T>;