import { FormlyFieldConfig } from '@ngx-formly/core'; import { ActionContract, ImageContract } from '../../../../contracts'; export interface FormContract{ id?: number; title?: string; image?: ImageContract; fields: FormlyFieldConfig[]; resource: Object; summary?: string; actions?: ActionContract[]; }