@neo4j-nvl/interaction-handlers
Advanced tools
Comparing version 0.2.48 to 0.2.49
@@ -37,3 +37,3 @@ import type { NVL } from '@neo4j-nvl/core'; | ||
*/ | ||
callCallbackIfRegistered: (name: keyof T, ...args: any) => void; | ||
callCallbackIfRegistered: (name: keyof T | string, ...args: unknown[]) => void; | ||
/** | ||
@@ -44,3 +44,3 @@ * Add or update a callback for a given event of type. | ||
*/ | ||
updateCallback: (name: keyof T, callback: T[keyof T]) => void; | ||
updateCallback: (name: keyof T | string, callback: T[keyof T]) => void; | ||
/** | ||
@@ -50,3 +50,3 @@ * Remove a callback for a given event of type. | ||
*/ | ||
removeCallback: (name: keyof T) => void; | ||
removeCallback: (name: keyof T | string) => void; | ||
/** | ||
@@ -53,0 +53,0 @@ * @internal |
{ | ||
"name": "@neo4j-nvl/interaction-handlers", | ||
"version": "0.2.48", | ||
"version": "0.2.49", | ||
"license": "SEE LICENSE IN 'Neo4j Early Access Agreement - Visualization Library.pdf'", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
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
285496