interface DetectedBuildFramework {
    buildTargets: DetectedBuildTarget[];
    id: string;
    settings: { [key: string]: string };
    version: string;
}

Properties

buildTargets: DetectedBuildTarget[]

List of build targets discovered for the framework to act upon.

id: string

The unique identifier of the build framework.

settings: { [key: string]: string }

Additional detected settings for the build framework.

version: string

The version of the framework if it can be determined from the sources.