aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/src/models/internal/IForm.ts
diff options
context:
space:
mode:
Diffstat (limited to 'code/app/src/models/internal/IForm.ts')
-rw-r--r--code/app/src/models/internal/IForm.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/code/app/src/models/internal/IForm.ts b/code/app/src/models/internal/IForm.ts
new file mode 100644
index 0000000..c14b770
--- /dev/null
+++ b/code/app/src/models/internal/IForm.ts
@@ -0,0 +1,15 @@
+import type { FormError } from "./FormError";
+
+export interface IForm {
+ fields: Record<string, IFormField>;
+ error: FormError;
+ get_payload: Function;
+ submit_async: Function;
+ isLoading: boolean;
+ showError: boolean;
+}
+
+export interface IFormField {
+ value: any;
+ errors: Array<string>;
+}