Type alias RequiresVal

RequiresVal: {
    [key: string]: OptionValue | undefined | null;
}

An object that maps option keys to required values.

Values can be undefined to indicate presence, or null to indicate absence.

Type declaration