Interface IState

interface IState {
    active?: boolean;
    condElse?: ConditionExpressionElse;
    condState: CondStateType;
    filled: number;
    invalid: boolean;
    previousCondState?: CondStateType;
    previousStateId?: string;
    rendered?: boolean;
    stateId?: string;
    uiStateId?: string;
}

Properties

active?: boolean
condState: CondStateType
filled: number
invalid: boolean
previousCondState?: CondStateType
previousStateId?: string
rendered?: boolean
stateId?: string
uiStateId?: string