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

simplytyped

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simplytyped - npm Package Compare versions

Comparing version 1.4.0 to 1.4.1

2

package.json
{
"name": "simplytyped",
"version": "1.4.0",
"version": "1.4.1",
"description": "yet another Typescript type library for advanced types",

@@ -5,0 +5,0 @@ "main": "index",

@@ -176,3 +176,3 @@ import { Diff } from './strings';

export declare type DeepReadonly<T> = Readonly<{
[k in Keys<T>]: T[k] extends any[] ? Array<DeepReadonly<T[k][number]>> : T[k] extends object ? DeepReadonly<T[k]> : T[k];
[k in Keys<T>]: T[k] extends any[] ? ReadonlyArray<DeepReadonly<T[k][number]>> : T[k] extends object ? DeepReadonly<T[k]> : T[k];
}>;

@@ -179,0 +179,0 @@ /**

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