Add refresh and isLoading properties to TemplateVariableType and DropDownComponentType

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-03-04 11:29:26 -03:00
commit c84af7d1ea
2 changed files with 2 additions and 0 deletions

View file

@ -54,6 +54,7 @@ export type TemplateVariableType = {
input_types?: Array<string>;
display_name?: string;
name?: string;
refresh?: boolean;
[key: string]: any;
};
export type sendAllProps = {

View file

@ -30,6 +30,7 @@ export type ToggleComponentType = {
editNode?: boolean;
};
export type DropDownComponentType = {
isLoading?: boolean;
value: string;
options: string[];
onSelect: (value: string) => void;