@waiting/shared-types
Advanced tools
Comparing version 23.4.0 to 23.6.0
export interface Func { | ||
/** | ||
* Returns the name of the function. Function names are read-only and can not be changed. | ||
*/ | ||
readonly name: string; | ||
(...args: any[]): any | Promise<any>; | ||
@@ -3,0 +7,0 @@ (this: any, ...args: any[]): any | Promise<any>; |
{ | ||
"name": "@waiting/shared-types", | ||
"author": "waiting", | ||
"version": "23.4.0", | ||
"version": "23.6.0", | ||
"description": "shared typescript types", | ||
@@ -70,3 +70,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "ea85cf374d4f3e88b3c3ba32bdbd1b2e702f74b2" | ||
"gitHead": "8c2868045846f7045fe02fe9fac8f66d8994ffc5" | ||
} |
@@ -6,2 +6,6 @@ /* eslint-disable @typescript-eslint/no-redundant-type-constituents */ | ||
export interface Func { | ||
/** | ||
* Returns the name of the function. Function names are read-only and can not be changed. | ||
*/ | ||
readonly name: string | ||
(...args: any[]): any | Promise<any> | ||
@@ -8,0 +12,0 @@ (this: any, ...args: any[]): any | Promise<any> |
Sorry, the diff of this file is not supported yet
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
76406
1323