Comparing version 4.2.2 to 4.2.3
@@ -1,2 +0,2 @@ | ||
declare type SimpleAction<TReturn> = void extends TReturn ? (...args: any[]) => TReturn : never; | ||
declare type SimpleAction<TFunction extends (...args: any[]) => any> = void extends ReturnType<TFunction> ? TFunction : never; | ||
export default SimpleAction; |
import SimpleAction from './interfaces/SimpleAction'; | ||
export declare function createSimpleSubscriber(decorator: Function): <TReturn>(actionType: string, target: SimpleAction<TReturn>) => SimpleAction<TReturn>; | ||
export declare const mutatorAction: <TReturn>(actionType: string, target: SimpleAction<TReturn>) => SimpleAction<TReturn>; | ||
export declare function createSimpleSubscriber(decorator: Function): <TFunction extends (...args: any) => any>(actionType: string, target: TFunction) => SimpleAction<TFunction>; | ||
export declare const mutatorAction: <TFunction extends (...args: any) => any>(actionType: string, target: TFunction) => SimpleAction<TFunction>; |
{ | ||
"name": "satcheljs", | ||
"version": "4.2.2", | ||
"version": "4.2.3", | ||
"description": "Store implementation for functional reactive flux.", | ||
@@ -5,0 +5,0 @@ "lint-staged": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
53063