UNPKG

e5core-angular-ui

Version:

e5 Anywhere Angular UI

14 lines (13 loc) 555 B
import { OnInit, ChangeDetectorRef } from '@angular/core'; import { BehaviorSubject } from 'rxjs'; import { WorkItemModel } from '../../../models/work-item'; import { UIWorkFieldModel, UIPropertyModel } from 'e5core-angular-services'; export declare class E5coreUiWorkFieldMaterialComponent implements OnInit { protected cd: ChangeDetectorRef; workItem$: BehaviorSubject<WorkItemModel>; field: UIWorkFieldModel; property: UIPropertyModel; readonly: boolean; constructor(cd: ChangeDetectorRef); ngOnInit(): void; }