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

@10ign/common-types

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@10ign/common-types - npm Package Compare versions

Comparing version 1.0.15 to 1.0.16

14

dist/CommonTypes.d.ts

@@ -9,2 +9,16 @@ /**

export declare type Handler = <T>(...t: T[]) => void;
/**
* Generic Class interface to be used as type.
*
* @param <T> - Generic type for defining the abstract class to be bridged
*/
export interface IClass<T> {
/**
* Generic constructor definition for the bridged class
*
* @param r - Rest parameter with the entire constructor payload
* @returns A bridged class' instance
*/
new <R>(...r: R[]): T;
}
//# sourceMappingURL=CommonTypes.d.ts.map

2

package.json
{
"name": "@10ign/common-types",
"version": "1.0.15",
"version": "1.0.16",
"description": "Common Types",

@@ -5,0 +5,0 @@ "main": "dist/CommonTypes.js",

@@ -9,1 +9,16 @@ /**

export type Handler = <T>(...t: T[]) => void;
/**
* Generic Class interface to be used as type.
*
* @param <T> - Generic type for defining the abstract class to be bridged
*/
export interface IClass<T> {
/**
* Generic constructor definition for the bridged class
*
* @param r - Rest parameter with the entire constructor payload
* @returns A bridged class' instance
*/
new <R>(...r: R[]): T;
}

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