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

@bunt/type

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bunt/type - npm Package Compare versions

Comparing version 0.1.0 to 0.27.0

dist/esm/package.json

3

dist/cjs/common.d.ts

@@ -1,2 +0,2 @@

export type Promisify<T> = T | Promise<T>;
export type Promisify<T> = T | Promise<T> | PromiseLike<T>;
export type Ctor<T = any, A extends any[] = any[]> = new (...args: A) => T;

@@ -11,4 +11,5 @@ export type Newable<T = any> = NewableFunction & {

export type MayNullable<T> = T | null | undefined;
export type Nullable<T> = T | null | undefined;
export type Fn<A extends any[] = [], R = void> = (...args: A) => R;
export type KeyOf<T extends Record<string, any>> = Exclude<keyof T, number | symbol>;
//# sourceMappingURL=common.d.ts.map

@@ -1,2 +0,2 @@

export type Promisify<T> = T | Promise<T>;
export type Promisify<T> = T | Promise<T> | PromiseLike<T>;
export type Ctor<T = any, A extends any[] = any[]> = new (...args: A) => T;

@@ -11,4 +11,5 @@ export type Newable<T = any> = NewableFunction & {

export type MayNullable<T> = T | null | undefined;
export type Nullable<T> = T | null | undefined;
export type Fn<A extends any[] = [], R = void> = (...args: A) => R;
export type KeyOf<T extends Record<string, any>> = Exclude<keyof T, number | symbol>;
//# sourceMappingURL=common.d.ts.map
{
"name": "@bunt/type",
"version": "0.1.0",
"version": "0.27.0",
"keywords": [

@@ -35,3 +35,4 @@ "typescript"

},
"license": "MIT"
"license": "MIT",
"gitHead": "ed8a1abf168ea3ed94209268406d2b8e9834a5a5"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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