mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
refactor: Fix type issues for parameter input components (#9449)
This commit is contained in:
@@ -130,15 +130,17 @@ export type EndpointStyle = {
|
||||
hoverMessage?: string;
|
||||
};
|
||||
|
||||
export interface IUpdateInformation {
|
||||
name: string;
|
||||
key?: string;
|
||||
value:
|
||||
export interface IUpdateInformation<
|
||||
T extends NodeParameterValueType =
|
||||
| string
|
||||
| number
|
||||
| { [key: string]: string | number | boolean }
|
||||
| NodeParameterValueType
|
||||
| INodeParameters; // with null makes problems in NodeSettings.vue
|
||||
| INodeParameters,
|
||||
> {
|
||||
name: string;
|
||||
key?: string;
|
||||
value: T;
|
||||
node?: string;
|
||||
oldValue?: string | number;
|
||||
type?: 'optionsOrderChanged';
|
||||
|
||||
Reference in New Issue
Block a user