interface DependencyResolutionInfo {
    module: Module;
    checked: boolean;
    reason: string;
    required: boolean;
}

Properties

module: Module

The module.

checked: boolean

Has the user toggled the checked state of this dependency in this application.

reason: string

Some reason associated with the dependency.

required: boolean

Whether this module is a hard requirement and cannot be unchecked.