@openui5/ts-types 1.120.33 → 1.120.34
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.
- package/package.json +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.m.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +38 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -280,7 +280,7 @@ declare namespace sap {
|
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
-
// For Library Version: 1.120.
|
|
283
|
+
// For Library Version: 1.120.34
|
|
284
284
|
|
|
285
285
|
declare module "sap/base/assert" {
|
|
286
286
|
/**
|
|
@@ -53231,6 +53231,43 @@ declare namespace sap {
|
|
|
53231
53231
|
*/
|
|
53232
53232
|
mParameters?: object
|
|
53233
53233
|
);
|
|
53234
|
+
|
|
53235
|
+
/**
|
|
53236
|
+
* Creates a new subclass of class sap.ui.model.json.JSONPropertyBinding with name `sClassName` and enriches
|
|
53237
|
+
* it with the information contained in `oClassInfo`.
|
|
53238
|
+
*
|
|
53239
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.model.ClientPropertyBinding.extend}.
|
|
53240
|
+
*
|
|
53241
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
53242
|
+
*
|
|
53243
|
+
* @returns Created class / constructor function
|
|
53244
|
+
*/
|
|
53245
|
+
static extend<T extends Record<string, unknown>>(
|
|
53246
|
+
/**
|
|
53247
|
+
* Name of the class being created
|
|
53248
|
+
*/
|
|
53249
|
+
sClassName: string,
|
|
53250
|
+
/**
|
|
53251
|
+
* Object literal with information about the class
|
|
53252
|
+
*/
|
|
53253
|
+
oClassInfo?: sap.ClassInfo<
|
|
53254
|
+
T,
|
|
53255
|
+
sap.ui.model.json.JSONPropertyBinding
|
|
53256
|
+
>,
|
|
53257
|
+
/**
|
|
53258
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
53259
|
+
* used by this class
|
|
53260
|
+
*/
|
|
53261
|
+
FNMetaImpl?: Function
|
|
53262
|
+
): Function;
|
|
53263
|
+
/**
|
|
53264
|
+
* Returns a metadata object for class sap.ui.model.json.JSONPropertyBinding.
|
|
53265
|
+
*
|
|
53266
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
53267
|
+
*
|
|
53268
|
+
* @returns Metadata object describing this class
|
|
53269
|
+
*/
|
|
53270
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
53234
53271
|
}
|
|
53235
53272
|
/**
|
|
53236
53273
|
* Tree binding implementation for JSON format.
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED