mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54:07 -08:00
feat(core): Add action
to INodePropertyOptions
(#3610)
* 📘 Add `action` to `INodeProperties` * 📘 Add `action` to `INodePropertyOptions` * 🔥 Remove unneeded key
This commit is contained in:
parent
88486bc778
commit
3c659682e9
|
@ -922,6 +922,7 @@ export interface INodeProperties {
|
||||||
export interface INodePropertyOptions {
|
export interface INodePropertyOptions {
|
||||||
name: string;
|
name: string;
|
||||||
value: string | number | boolean;
|
value: string | number | boolean;
|
||||||
|
action?: string;
|
||||||
description?: string;
|
description?: string;
|
||||||
routing?: INodePropertyRouting;
|
routing?: INodePropertyRouting;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue