@openui5/ts-types 1.101.0 → 1.102.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.101.0
1
+ // For Library Version: 1.102.2
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -34,9 +34,6 @@ declare namespace sap {
34
34
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
35
35
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
36
36
  * of the syntax of the settings object.
37
- *
38
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Control#constructor
39
- * sap.ui.core.Control} can be used.
40
37
  */
41
38
  constructor();
42
39
 
@@ -45,6 +42,8 @@ declare namespace sap {
45
42
  * with the information contained in `oClassInfo`.
46
43
  *
47
44
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
45
+ *
46
+ * @returns Created class / constructor function
48
47
  */
49
48
  static extend<T extends Record<string, unknown>>(
50
49
  /**
@@ -63,6 +62,8 @@ declare namespace sap {
63
62
  ): Function;
64
63
  /**
65
64
  * Returns a metadata object for class sap.ui.webc.common.WebComponent.
65
+ *
66
+ * @returns Metadata object describing this class
66
67
  */
67
68
  static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
68
69
  }