value-provider.d.ts 195 B

12345
  1. import Provider from "./provider";
  2. export default interface ValueProvider<T> {
  3. useValue: T;
  4. }
  5. export declare function isValueProvider<T>(provider: Provider<T>): provider is ValueProvider<T>;