@bonsae/nrg 0.11.1 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types/server.d.ts CHANGED
@@ -2158,7 +2158,9 @@ export declare abstract class IONode<TConfig = any, TCredentials = any, TInput =
2158
2158
  constructor(RED: RED, node: any, config: IONodeConfig<TConfig>, credentials: IONodeCredentials<TCredentials>);
2159
2159
  abstract input(msg: TInput): void | Promise<void>;
2160
2160
  send(msg: TOutput): void;
2161
+ private _nodeSource;
2161
2162
  status(status: IONodeStatus): void;
2163
+ error(message: string, msg?: any): void;
2162
2164
  updateWires(wires: string[][]): void;
2163
2165
  receive(msg: TInput): void;
2164
2166
  get x(): number;