UNPKG

redux-providers

Version:

Minimalist dependency injection system for redux. Create providers to be injected and used in redux reducers.

3 lines (2 loc) 220 B
export type GenericClassDecorator<T> = (target: T) => void; export type GenericMethodDecorator<T> = (target: T, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T> | void;