Skip to content

Commit

Permalink
Fix ConfigNode type
Browse files Browse the repository at this point in the history
  • Loading branch information
GogoVega committed Feb 23, 2025
1 parent 2428a0d commit 3786879
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/nodes/types/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,14 @@ export type ConfigNode = Node & {
* @deprecated
* @param id The node ID
* @param type The Service Type
* @param done Callback
*/
removeStatusListener(id: string, type: ServiceType, done: () => void): void;
/**
* Remove this node from the Global Configuration Node
* @param node The node
* @param type The Service Type
* @param done Callback
*/
removeStatusListener(node: Node, type: ServiceType, done: () => void): void;
/**
Expand All @@ -104,13 +106,11 @@ export type ConfigNode = Node & {
* Set the global status to this node
* @deprecated
* @param id The node ID
* @param type The Service Type
*/
setCurrentStatus(id: string): void;
/**
* Set the global status to this node
* @param node The node
* @param type The Service Type
*/
setCurrentStatus(node: Node): void;
readonly version: string;
Expand Down

0 comments on commit 3786879

Please sign in to comment.