feat(core): Add action to INodePropertyOptions (#3610)

* 📘 Add `action` to `INodeProperties`

* 📘 Add `action` to `INodePropertyOptions`

* 🔥 Remove unneeded key
This commit is contained in:
Iván Ovejero 2022-07-04 21:54:56 +02:00 committed by GitHub
parent 88486bc778
commit 3c659682e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -922,6 +922,7 @@ export interface INodeProperties {
export interface INodePropertyOptions {
name: string;
value: string | number | boolean;
action?: string;
description?: string;
routing?: INodePropertyRouting;
}