6 lines
195 B
TypeScript
Raw Normal View History

2022-07-09 16:03:26 -04:00
import Provider from "./provider";
export default interface ValueProvider<T> {
useValue: T;
}
export declare function isValueProvider<T>(provider: Provider<T>): provider is ValueProvider<T>;