UNPKG

acr-assist-simulator-module

Version:

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.7.4.

15 lines (14 loc) 697 B
import { ConditionType } from '../models/conditiontype.model'; import { Condition } from '../condition'; import { DataElementValues } from '../dataelementvalues'; import { SectionIfCondition } from './section-if-condition'; import { SectionIfValueNotCondition } from './section-if-value-not-condition'; export declare class SectionIfValueCondition implements Condition { conditionType: ConditionType; sectionIf: SectionIfValueCondition[]; innerSectionIfValue: SectionIfCondition; innerSectionIfValueNot: SectionIfValueNotCondition; sectionText: string; constructor(conditionType: ConditionType); evaluate(dataElementValues: DataElementValues): boolean; }