interface AsukaParametricEvaluation {
    computedValues: Record<string, AsukaParametricValue>;
    context: Record<string, unknown>;
    issues: AsukaParametricIssue[];
    valid: boolean;
    values: Record<string, AsukaParametricValue>;
}

Properties

computedValues: Record<string, AsukaParametricValue>
context: Record<string, unknown>
valid: boolean
values: Record<string, AsukaParametricValue>