nemo-observable-util
Advanced tools
Comparing version 5.0.1 to 5.0.2
{ | ||
"name": "nemo-observable-util", | ||
"version": "5.0.1", | ||
"version": "5.0.2", | ||
"description": "Simple transparent reactivity with 100% language coverage. Made with ES6 Proxies.", | ||
@@ -5,0 +5,0 @@ "main": "dist/cjs.es5.js", |
@@ -44,3 +44,8 @@ declare module 'nemo-observable-util' { | ||
function action<F extends Function>(fn: F): F; | ||
function action(target: any, key: any, d: TypedPropertyDescriptor<any>): void; | ||
function action( | ||
target: Object, | ||
propertyKey: string | symbol, | ||
descriptor: TypedPropertyDescriptor<T> | ||
): TypedPropertyDescriptor<T> | void; | ||
function action(target: Object, propertyKey: string | symbol): void; | ||
const actionManager: any; | ||
@@ -47,0 +52,0 @@ function decoratorFactory<T extends Function>( |
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
107175
2394