Socket
Socket
Sign inDemoInstall

@peersyst/react-types

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@peersyst/react-types - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

7

index.d.ts

@@ -38,1 +38,8 @@ import { CSSProperties } from "react";

export type DistributiveOmit<T, K extends keyof any> = T extends any ? Omit<T, K> : never;
/**
* Creates a type with common properties of A and B
*/
type Common<A, B> = {
[P in keyof A & keyof B]: A[P] | B[P];
};

2

package.json
{
"name": "@peersyst/react-types",
"author": "Peersyst",
"version": "1.0.0",
"version": "1.1.0",
"license": "MIT",

@@ -6,0 +6,0 @@ "types": "./index.d.ts",

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