inspectable
Advanced tools
Comparing version 3.0.1 to 3.0.2
/// <reference types="node" /> | ||
import type { inspect } from 'node:util'; | ||
export type Constructor<T = Record<string | number | symbol, unknown>> = new (...args: unknown[]) => T; | ||
export type Constructor<T = Record<string | number | symbol, unknown>> = new (...args: any[]) => T; | ||
export type InspectedClass = any; | ||
@@ -5,0 +5,0 @@ export type NodeInspectContext = typeof inspect.defaultOptions & { |
{ | ||
"name": "inspectable", | ||
"version": "3.0.1", | ||
"version": "3.0.2", | ||
"description": "Make the output of a class instance in the console meaningful", | ||
@@ -42,7 +42,7 @@ "license": "MIT", | ||
"devDependencies": { | ||
"@biomejs/biome": "^1.7.0", | ||
"@types/node": "^20.12.7", | ||
"rollup": "^4.14.3", | ||
"@biomejs/biome": "^1.8.1", | ||
"@types/node": "^20.14.2", | ||
"rollup": "^4.18.0", | ||
"rollup-plugin-typescript2": "^0.36.0", | ||
"tsx": "^4.7.2", | ||
"tsx": "^4.15.5", | ||
"typedoc": "^0.25.13", | ||
@@ -49,0 +49,0 @@ "typescript": "^5.4.5" |
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
14311