Type Alias RequiredElementsOptions

RequiredElementsOptions: ElementsRuleOptions & {
    useEmptyArrays: true;
} | ElementsRuleOptions & {
    minOccurs:
        | 1
        | 2
        | 3
        | 4
        | 5
        | 6
        | 7
        | 8
        | 9
        | 10;
}

Elements options that guarantee that there is a non-null array. For minOccurs types greater than 10, a type cast is required.