New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.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.2.4 to 1.2.5

2

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

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

import { Diff } from './strings';
import { False, True } from './conditionals';
import { Nullable } from './utils';
export declare type PlainObject = Record<string, any>;

@@ -37,3 +36,3 @@ export declare type ObjectType<T> = {

export declare type Optional<T extends object, K extends Keys<T>> = CombineObjects<{
[k in K]?: Nullable<T[k]>;
[k in K]?: T[k] | undefined;
}, Omit<T, K>>;

@@ -40,0 +39,0 @@ export declare type DeepReadonly<T> = Readonly<{

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