mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
parent
5365786386
commit
a533943a40
@ -100,7 +100,7 @@ RED.editor.codeEditor.monaco = (function() {
|
|||||||
"node-red-util": {package: "node-red", module: "util", path: "node-red/util.d.ts" },
|
"node-red-util": {package: "node-red", module: "util", path: "node-red/util.d.ts" },
|
||||||
"node-red-func": {package: "node-red", module: "func", path: "node-red/func.d.ts" },
|
"node-red-func": {package: "node-red", module: "func", path: "node-red/func.d.ts" },
|
||||||
}
|
}
|
||||||
const defaultServerSideTypes = [ knownModules["node-red-util"], knownModules["node-red-func"], knownModules["globals"], knownModules["console"], knownModules["buffer"] ];
|
const defaultServerSideTypes = [ knownModules["node-red-util"], knownModules["node-red-func"], knownModules["globals"], knownModules["console"], knownModules["buffer"] , knownModules["util"] ];
|
||||||
|
|
||||||
const modulesCache = {};
|
const modulesCache = {};
|
||||||
|
|
||||||
|
@ -14,6 +14,9 @@ declare var msg: NodeMessage;
|
|||||||
/** @type {string} the id of the incoming `msg` (alias of msg._msgid) */
|
/** @type {string} the id of the incoming `msg` (alias of msg._msgid) */
|
||||||
declare const __msgid__:string;
|
declare const __msgid__:string;
|
||||||
|
|
||||||
|
declare const util:typeof import('util')
|
||||||
|
declare const promisify:typeof import('util').promisify
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef NodeStatus
|
* @typedef NodeStatus
|
||||||
* @type {object}
|
* @type {object}
|
||||||
|
Loading…
Reference in New Issue
Block a user