UNPKG

@netgrif/components-core

Version:

Netgrif Application engine frontend core Angular library

10 lines (9 loc) 325 B
import { DataField } from '../../data-fields/models/abstract-data-field'; import { TaskContentElementType } from './task-content-element-type'; export interface DatafieldGridLayoutElement { title?: string; gridAreaId: string; type: TaskContentElementType; item?: DataField<unknown>; alignment?: string; }