Merge pull request #3377 from Steve-Mcl/function-node-decs

Update `node` declarations in func.d.ts
This commit is contained in:
Nick O'Leary 2022-01-26 12:03:56 +00:00 committed by GitHub
commit be7f84bc67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -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 {
/**