@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/README.md +1 -1
- package/package.json +1 -1
- package/server/index.cjs +87 -1
- package/server/resources/nrg-client.js +2392 -2305
- package/types/server.d.ts +2 -0
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;
|