test: array fields

This commit is contained in:
Dan Ribbens
2022-07-18 23:50:28 -04:00
parent 2a7651eb9c
commit 28e3928094
28 changed files with 485 additions and 510 deletions

View File

@@ -20,6 +20,10 @@ export interface ArrayField {
text: string;
id?: string;
}[];
readOnly?: {
text?: string;
id?: string;
}[];
createdAt: string;
updatedAt: string;
}
@@ -105,6 +109,10 @@ export interface GroupField {
defaultChild?: string;
subGroup?: {
textWithinGroup?: string;
arrayWithinGroup?: {
textWithinArray?: string;
id?: string;
}[];
};
};
createdAt: string;