| 27 | import { FLASK_BASE_URL } from "./backend/utils"; |
| 28 | |
| 29 | interface FlowFile { |
| 30 | name: string; |
| 31 | pwd_protected: boolean; // whether the flow is encrypted on the backend |
| 32 | last_modified: string; |
| 33 | } |
| 34 | |
| 35 | interface FlowSidebarProps { |
| 36 | /** The name of flow that's currently loaded in the front-end, if defined. */ |
nothing calls this directly
no outgoing calls
no test coverage detected