Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fluids

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fluids - npm Package Compare versions

Comparing version 0.1.5 to 0.1.6

2

package.json
{
"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
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc