Add refresh and isLoading properties to TemplateVariableType and DropDownComponentType
This commit is contained in:
parent
ad0b0e5d5b
commit
c84af7d1ea
2 changed files with 2 additions and 0 deletions
|
|
@ -54,6 +54,7 @@ export type TemplateVariableType = {
|
|||
input_types?: Array<string>;
|
||||
display_name?: string;
|
||||
name?: string;
|
||||
refresh?: boolean;
|
||||
[key: string]: any;
|
||||
};
|
||||
export type sendAllProps = {
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ export type ToggleComponentType = {
|
|||
editNode?: boolean;
|
||||
};
|
||||
export type DropDownComponentType = {
|
||||
isLoading?: boolean;
|
||||
value: string;
|
||||
options: string[];
|
||||
onSelect: (value: string) => void;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue