further types

This commit is contained in:
James
2020-11-30 17:31:05 -05:00
parent c398c8b2a2
commit 100d1e7220
13 changed files with 98 additions and 118 deletions

View File

@@ -189,3 +189,7 @@ export type Field =
| UploadField
| CodeField
| RowField;
export type FieldWithPath = Field & {
path?: string
}