feat: created `ISuperFormContext` interface

pull/111/head
Samuel Rowe 2 years ago
parent 4d4459f187
commit 5f44f74797

@ -1,5 +1,6 @@
import { AnchorId } from "@jsplumb/common"; import { AnchorId } from "@jsplumb/common";
import { Dictionary } from "lodash"; import { Dictionary } from "lodash";
import { FunctionComponent } from "react";
import { KeyValuePair } from "tailwindcss/types/config"; import { KeyValuePair } from "tailwindcss/types/config";
import { string } from "yup"; import { string } from "yup";
import { NodeGroupType } from "./enums"; import { NodeGroupType } from "./enums";
@ -520,3 +521,9 @@ export interface ITabContext {
value: string; value: string;
onChange: (newValue: string) => void; onChange: (newValue: string) => void;
} }
/* -- SuperForm -- */
export interface ISuperFormContext {
types: Record<string, FunctionComponent>;
}

Loading…
Cancel
Save