acr-assist-simulator-module
Version:
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.7.4.
10 lines (9 loc) • 421 B
TypeScript
import { BaseDataElement } from './base-data-element.model';
import { ComputedValue } from '../../models/computed-value.model';
import { DecisionPoint } from '../../models/decisionpoint.model';
import { Branch } from '../../models/branch.model';
export declare class ComputedDataElement extends BaseDataElement {
computeValue: ComputedValue;
decisionPoints: DecisionPoint[];
defaultBranch: Branch;
}