nemo-observable-util
Advanced tools
Comparing version 5.0.4 to 5.0.5
{ | ||
"name": "nemo-observable-util", | ||
"version": "5.0.4", | ||
"version": "5.0.5", | ||
"description": "Simple transparent reactivity with 100% language coverage. Made with ES6 Proxies.", | ||
@@ -5,0 +5,0 @@ "main": "dist/cjs.es5.js", |
@@ -50,3 +50,3 @@ declare module 'nemo-observable-util' { | ||
function action(target: Object, propertyKey: string | symbol): void; | ||
function runInAction<T extends Function>(f: T): ReturnType<T>; | ||
function runInAction<T extends (...args: any) => any>(f: T): ReturnType<T>; | ||
const actionManager: any; | ||
@@ -53,0 +53,0 @@ function decoratorFactory<T extends Function>( |
107564