- Source:
Classes
Type Definitions
LibraryMetadataEntry
Properties:
Name | Type | Description |
---|---|---|
id |
string | Identifier |
version |
string | Version |
path |
string | Path |
dependencies |
Array.<string> | List of dependency ids |
optionalDependencies |
Array.<string> | List of optional dependency ids |
Library metadata entry
Type:
- object
Example
const libraryMetadataEntry = {
"id": "@openui5/sap.ui.core",
"version": "1.75.0",
"path": "~/.ui5/framework/packages/@openui5/sap.ui.core/1.75.0",
"dependencies": [],
"optionalDependencies": []
};
ResolverInstallResult
Properties:
Name | Type | Description |
---|---|---|
libraryMetadata |
object.<string, module:@ui5/project.ui5Framework.LibraryMetadataEntry> | Object containing all installed libraries with library name as key |
Install result
Type:
- object
Example
const resolverInstallResult = {
"libraryMetadata": {
"sap.ui.core": {
// ...
},
"sap.m": {
// ...
}
}
};