Comparing version 0.1.5 to 0.1.6
{ | ||
"name": "fluids", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"description": "Glue layer for reactivity", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -53,1 +53,7 @@ export { hasFluidValue, getFluidValue, getFluidConfig, setFluidConfig, addFluidObserver, }; | ||
} | ||
/** | ||
* Add the `FluidValue` type to every property. | ||
*/ | ||
export declare type FluidProps<T> = T extends object ? { | ||
[P in keyof T]: T[P] | FluidValue<Exclude<T[P], void>>; | ||
} : unknown; |
@@ -96,1 +96,8 @@ const $config = Symbol.for('FluidValue:config') | ||
} | ||
/** | ||
* Add the `FluidValue` type to every property. | ||
*/ | ||
export type FluidProps<T> = T extends object | ||
? { [P in keyof T]: T[P] | FluidValue<Exclude<T[P], void>> } | ||
: unknown |
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
13368
193