e5core-angular-ui
Version:
e5 Anywhere Angular UI
16 lines (15 loc) • 554 B
TypeScript
import { OnInit } from '@angular/core';
import { BehaviorSubject } from 'rxjs';
import { WorkItemModel } from '../../../models/work-item';
import { UIWorkFieldModel, UIPropertyModel } from 'e5core-angular-services';
export declare class E5coreUiWorkFieldSwitchComponent implements OnInit {
workItem$: BehaviorSubject<WorkItemModel>;
field: UIWorkFieldModel;
property: UIPropertyModel;
readonly: boolean;
RegexGuid: string;
RegexCurrency: string;
RegexDecimal: string;
constructor();
ngOnInit(): void;
}