🚀 feat(tabs): add save function to TabsContextType

The save function is added to TabsContextType to allow the saving of changes made to the flows in the tabs.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-06-14 15:46:48 -03:00
commit 68f278553f

View file

@ -1,6 +1,7 @@
import { FlowType } from "../flow";
export type TabsContextType = {
save: () => void;
tabId: string;
setTabId: (index: string) => void;
flows: Array<FlowType>;