@openui5/ts-types 1.99.1 → 1.102.0

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,7 +1,13 @@
1
- // For Library Version: 1.99.1
1
+ // For Library Version: 1.102.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
5
+ /**
6
+ * @SINCE 1.92.0
7
+ * @EXPERIMENTAL (since 1.92.0)
8
+ *
9
+ * Namespace for UI5 Web Components Retrofit libraries
10
+ */
5
11
  namespace webc {
6
12
  /**
7
13
  * @SINCE 1.92.0
@@ -28,9 +34,6 @@ declare namespace sap {
28
34
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
29
35
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
30
36
  * of the syntax of the settings object.
31
- *
32
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Control#constructor
33
- * sap.ui.core.Control} can be used.
34
37
  */
35
38
  constructor();
36
39
 
@@ -39,6 +42,8 @@ declare namespace sap {
39
42
  * with the information contained in `oClassInfo`.
40
43
  *
41
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
42
47
  */
43
48
  static extend<T extends Record<string, unknown>>(
44
49
  /**
@@ -57,6 +62,8 @@ declare namespace sap {
57
62
  ): Function;
58
63
  /**
59
64
  * Returns a metadata object for class sap.ui.webc.common.WebComponent.
65
+ *
66
+ * @returns Metadata object describing this class
60
67
  */
61
68
  static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
62
69
  }