form: FormGroup<
{
descriptor: FormControl<any>;
files: FormGroup<
{
configFile: FormControl<File>;
mainFile: FormControl<File>;
mainFileUrl: FormControl<string>;
otherFiles: FormControl<File[]>;
},
>;
options: FormGroup<
{
baseIri: FormControl<string>;
interactiveSchema: FormControl<boolean>;
pathOverrides: FormArray<FormControl<[string | RegExp, string]>>;
useVocabMetadata: FormControl<boolean>;
},
>;
},
> = ...