Add parameter type "hidden"

This commit is contained in:
Jan Oberhauser
2020-02-09 13:33:40 -08:00
parent 928bf4dc68
commit 6bff3dc199
4 changed files with 26 additions and 3 deletions

View File

@@ -364,7 +364,7 @@ export interface INodeParameters {
}
export type NodePropertyTypes = 'boolean' | 'collection' | 'color' | 'dateTime' | 'fixedCollection' | 'json' | 'multiOptions' | 'number' | 'options' | 'string';
export type NodePropertyTypes = 'boolean' | 'collection' | 'color' | 'dateTime' | 'fixedCollection' | 'hidden' | 'json' | 'multiOptions' | 'number' | 'options' | 'string';
export type EditorTypes = 'code';