diff --git a/services/frontend/src/types/index.ts b/services/frontend/src/types/index.ts index 0c62dfe..d143a63 100644 --- a/services/frontend/src/types/index.ts +++ b/services/frontend/src/types/index.ts @@ -1,5 +1,6 @@ import { AnchorId } from "@jsplumb/common"; import { Dictionary } from "lodash"; +import { FunctionComponent } from "react"; import { KeyValuePair } from "tailwindcss/types/config"; import { string } from "yup"; import { NodeGroupType } from "./enums"; @@ -520,3 +521,9 @@ export interface ITabContext { value: string; onChange: (newValue: string) => void; } + +/* -- SuperForm -- */ + +export interface ISuperFormContext { + types: Record; +}