temporary switch off the FormModel json typing

This commit is contained in:
Denys Vuika
2019-09-13 13:12:24 +01:00
parent 5b11e52903
commit 77415d08a0

View File

@@ -67,7 +67,7 @@ export class FormModel {
readonly processDefinitionId: string;
readonly selectedOutcome: string;
json: FormRepresentationModel;
json: any;
nodeId: string;
contentHost: string;
values: FormValues = {};
@@ -83,7 +83,7 @@ export class FormModel {
processVariables: ProcessVariableModel[] = [];
variables: FormVariableModel[] = [];
constructor(json?: FormRepresentationModel, formValues?: FormValues, readOnly: boolean = false, protected formService?: FormService) {
constructor(json?: any, formValues?: FormValues, readOnly: boolean = false, protected formService?: FormService) {
this.readOnly = readOnly;
this.json = json;