Boundary conditions

interface IModelBoundaryConditions {
    done?: boolean;
    error?: string | Error;
    index: number;
    title: string;
    [type: string]:
        | undefined
        | string
        | number
        | boolean
        | Error
        | IModelTypedBoundaryCondition;
}

Hierarchy (View Summary)

Indexable

Properties

Properties

done?: boolean
error?: string | Error
index: number
title: string