From c4cc204c948d310a989c2fec82100e0a7ae5ade2 Mon Sep 17 00:00:00 2001 From: Steve-Mcl Date: Wed, 26 Jan 2022 11:40:05 +0000 Subject: [PATCH] Add static declerations to func ts. fixes #3376 --- .../@node-red/editor-client/src/types/node-red/func.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/node_modules/@node-red/editor-client/src/types/node-red/func.d.ts b/packages/node_modules/@node-red/editor-client/src/types/node-red/func.d.ts index 526bdc913..6ac0d8b02 100644 --- a/packages/node_modules/@node-red/editor-client/src/types/node-red/func.d.ts +++ b/packages/node_modules/@node-red/editor-client/src/types/node-red/func.d.ts @@ -57,13 +57,13 @@ declare class node { */ static status(status:string|boolean|number); /** the id of this node */ - public readonly id:string; + public static readonly id:string; /** the name of this node */ - public readonly name:string; + public static readonly name:string; /** the path identifier for this node */ - public readonly path:string; + public static readonly path:string; /** the number of outputs of this node */ - public readonly outputCount:number; + public static readonly outputCount:number; } declare class context { /**