@10ign/common-types
Advanced tools
Comparing version 1.0.16 to 1.0.17
@@ -12,10 +12,10 @@ /** | ||
* | ||
* @param <T> - Generic type for defining the abstract class to be bridged | ||
* @param <T> - Generic type for the class definition | ||
*/ | ||
export interface IClass<T> { | ||
/** | ||
* Generic constructor definition for the bridged class | ||
* Generic constructor definition for the class | ||
* | ||
* @param r - Rest parameter with the entire constructor payload | ||
* @returns A bridged class' instance | ||
* @returns A class' instance | ||
*/ | ||
@@ -22,0 +22,0 @@ new <R>(...r: R[]): T; |
{ | ||
"name": "@10ign/common-types", | ||
"version": "1.0.16", | ||
"version": "1.0.17", | ||
"description": "Common Types", | ||
@@ -5,0 +5,0 @@ "main": "dist/CommonTypes.js", |
@@ -13,12 +13,12 @@ /** | ||
* | ||
* @param <T> - Generic type for defining the abstract class to be bridged | ||
* @param <T> - Generic type for the class definition | ||
*/ | ||
export interface IClass<T> { | ||
/** | ||
* Generic constructor definition for the bridged class | ||
* Generic constructor definition for the class | ||
* | ||
* @param r - Rest parameter with the entire constructor payload | ||
* @returns A bridged class' instance | ||
* @returns A class' instance | ||
*/ | ||
new <R>(...r: R[]): T; | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7940