@sapui5/ts-types 1.84.17 → 1.84.21

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.
Files changed (44) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +1 -1
  3. package/types/sap.chart.d.ts +1 -1
  4. package/types/sap.f.d.ts +1 -1
  5. package/types/sap.fe.core.d.ts +1 -1
  6. package/types/sap.fe.macros.d.ts +1 -1
  7. package/types/sap.fe.plugins.d.ts +1 -1
  8. package/types/sap.fe.templates.d.ts +1 -1
  9. package/types/sap.fe.test.d.ts +1 -1
  10. package/types/sap.fe.tools.d.ts +1 -1
  11. package/types/sap.gantt.d.ts +317 -281
  12. package/types/sap.m.d.ts +7 -2
  13. package/types/sap.makit.d.ts +1 -1
  14. package/types/sap.me.d.ts +1 -1
  15. package/types/sap.ndc.d.ts +57 -35
  16. package/types/sap.ovp.d.ts +1 -1
  17. package/types/sap.suite.ui.commons.d.ts +447 -316
  18. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  19. package/types/sap.suite.ui.microchart.d.ts +1 -1
  20. package/types/sap.tnt.d.ts +1 -1
  21. package/types/sap.ui.codeeditor.d.ts +1 -1
  22. package/types/sap.ui.commons.d.ts +1 -1
  23. package/types/sap.ui.comp.d.ts +1 -1
  24. package/types/sap.ui.core.d.ts +13 -6
  25. package/types/sap.ui.dt.d.ts +1 -1
  26. package/types/sap.ui.export.d.ts +3 -3
  27. package/types/sap.ui.fl.d.ts +1 -1
  28. package/types/sap.ui.integration.d.ts +1 -1
  29. package/types/sap.ui.layout.d.ts +1 -1
  30. package/types/sap.ui.mdc.d.ts +1 -1
  31. package/types/sap.ui.richtexteditor.d.ts +1 -1
  32. package/types/sap.ui.rta.d.ts +1 -1
  33. package/types/sap.ui.suite.d.ts +1 -1
  34. package/types/sap.ui.support.d.ts +6 -6
  35. package/types/sap.ui.table.d.ts +1 -1
  36. package/types/sap.ui.testrecorder.d.ts +1 -1
  37. package/types/sap.ui.unified.d.ts +1 -1
  38. package/types/sap.ui.ux3.d.ts +1 -1
  39. package/types/sap.ui.vbm.d.ts +1 -1
  40. package/types/sap.ui.vk.d.ts +77 -4
  41. package/types/sap.uiext.inbox.d.ts +2 -1
  42. package/types/sap.ushell.d.ts +1 -1
  43. package/types/sap.uxap.d.ts +1 -1
  44. package/types/sap.viz.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.10
1
+ // For Library Version: 1.84.14
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1097,7 +1097,7 @@ declare namespace sap {
1097
1097
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.config.ToolbarGroup.extend}.
1098
1098
  */
1099
1099
  // @ts-ignore
1100
- static extend(
1100
+ static extend<T extends Record<string, unknown>>(
1101
1101
  /**
1102
1102
  * Name of the class being created
1103
1103
  */
@@ -1105,7 +1105,7 @@ declare namespace sap {
1105
1105
  /**
1106
1106
  * Object literal with information about the class
1107
1107
  */
1108
- oClassInfo?: object,
1108
+ oClassInfo?: T & ThisType<T & sap.gantt.config.BirdEyeGroup>,
1109
1109
  /**
1110
1110
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1111
1111
  * used by this class
@@ -1173,7 +1173,7 @@ declare namespace sap {
1173
1173
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
1174
1174
  */
1175
1175
  // @ts-ignore
1176
- static extend(
1176
+ static extend<T extends Record<string, unknown>>(
1177
1177
  /**
1178
1178
  * Name of the class being created
1179
1179
  */
@@ -1181,7 +1181,7 @@ declare namespace sap {
1181
1181
  /**
1182
1182
  * Object literal with information about the class
1183
1183
  */
1184
- oClassInfo?: object,
1184
+ oClassInfo?: T & ThisType<T & sap.gantt.config.ChartScheme>,
1185
1185
  /**
1186
1186
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1187
1187
  * used by this class
@@ -1416,7 +1416,7 @@ declare namespace sap {
1416
1416
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
1417
1417
  */
1418
1418
  // @ts-ignore
1419
- static extend(
1419
+ static extend<T extends Record<string, unknown>>(
1420
1420
  /**
1421
1421
  * Name of the class being created
1422
1422
  */
@@ -1424,7 +1424,7 @@ declare namespace sap {
1424
1424
  /**
1425
1425
  * Object literal with information about the class
1426
1426
  */
1427
- oClassInfo?: object,
1427
+ oClassInfo?: T & ThisType<T & sap.gantt.config.ColumnAttribute>,
1428
1428
  /**
1429
1429
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1430
1430
  * used by this class
@@ -1505,7 +1505,7 @@ declare namespace sap {
1505
1505
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
1506
1506
  */
1507
1507
  // @ts-ignore
1508
- static extend(
1508
+ static extend<T extends Record<string, unknown>>(
1509
1509
  /**
1510
1510
  * Name of the class being created
1511
1511
  */
@@ -1513,7 +1513,7 @@ declare namespace sap {
1513
1513
  /**
1514
1514
  * Object literal with information about the class
1515
1515
  */
1516
- oClassInfo?: object,
1516
+ oClassInfo?: T & ThisType<T & sap.gantt.config.ContainerLayout>,
1517
1517
  /**
1518
1518
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1519
1519
  * used by this class
@@ -1716,7 +1716,7 @@ declare namespace sap {
1716
1716
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
1717
1717
  */
1718
1718
  // @ts-ignore
1719
- static extend(
1719
+ static extend<T extends Record<string, unknown>>(
1720
1720
  /**
1721
1721
  * Name of the class being created
1722
1722
  */
@@ -1724,7 +1724,7 @@ declare namespace sap {
1724
1724
  /**
1725
1725
  * Object literal with information about the class
1726
1726
  */
1727
- oClassInfo?: object,
1727
+ oClassInfo?: T & ThisType<T & sap.gantt.config.ExpandChart>,
1728
1728
  /**
1729
1729
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1730
1730
  * used by this class
@@ -1828,7 +1828,7 @@ declare namespace sap {
1828
1828
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.config.ToolbarGroup.extend}.
1829
1829
  */
1830
1830
  // @ts-ignore
1831
- static extend(
1831
+ static extend<T extends Record<string, unknown>>(
1832
1832
  /**
1833
1833
  * Name of the class being created
1834
1834
  */
@@ -1836,7 +1836,7 @@ declare namespace sap {
1836
1836
  /**
1837
1837
  * Object literal with information about the class
1838
1838
  */
1839
- oClassInfo?: object,
1839
+ oClassInfo?: T & ThisType<T & sap.gantt.config.ExpandChartGroup>,
1840
1840
  /**
1841
1841
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1842
1842
  * used by this class
@@ -1942,7 +1942,7 @@ declare namespace sap {
1942
1942
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
1943
1943
  */
1944
1944
  // @ts-ignore
1945
- static extend(
1945
+ static extend<T extends Record<string, unknown>>(
1946
1946
  /**
1947
1947
  * Name of the class being created
1948
1948
  */
@@ -1950,7 +1950,7 @@ declare namespace sap {
1950
1950
  /**
1951
1951
  * Object literal with information about the class
1952
1952
  */
1953
- oClassInfo?: object,
1953
+ oClassInfo?: T & ThisType<T & sap.gantt.config.GanttChartLayout>,
1954
1954
  /**
1955
1955
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1956
1956
  * used by this class
@@ -2058,7 +2058,7 @@ declare namespace sap {
2058
2058
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
2059
2059
  */
2060
2060
  // @ts-ignore
2061
- static extend(
2061
+ static extend<T extends Record<string, unknown>>(
2062
2062
  /**
2063
2063
  * Name of the class being created
2064
2064
  */
@@ -2066,7 +2066,7 @@ declare namespace sap {
2066
2066
  /**
2067
2067
  * Object literal with information about the class
2068
2068
  */
2069
- oClassInfo?: object,
2069
+ oClassInfo?: T & ThisType<T & sap.gantt.config.Hierarchy>,
2070
2070
  /**
2071
2071
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2072
2072
  * used by this class
@@ -2258,7 +2258,7 @@ declare namespace sap {
2258
2258
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
2259
2259
  */
2260
2260
  // @ts-ignore
2261
- static extend(
2261
+ static extend<T extends Record<string, unknown>>(
2262
2262
  /**
2263
2263
  * Name of the class being created
2264
2264
  */
@@ -2266,7 +2266,7 @@ declare namespace sap {
2266
2266
  /**
2267
2267
  * Object literal with information about the class
2268
2268
  */
2269
- oClassInfo?: object,
2269
+ oClassInfo?: T & ThisType<T & sap.gantt.config.HierarchyColumn>,
2270
2270
  /**
2271
2271
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2272
2272
  * used by this class
@@ -2466,7 +2466,7 @@ declare namespace sap {
2466
2466
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.config.ToolbarGroup.extend}.
2467
2467
  */
2468
2468
  // @ts-ignore
2469
- static extend(
2469
+ static extend<T extends Record<string, unknown>>(
2470
2470
  /**
2471
2471
  * Name of the class being created
2472
2472
  */
@@ -2474,7 +2474,7 @@ declare namespace sap {
2474
2474
  /**
2475
2475
  * Object literal with information about the class
2476
2476
  */
2477
- oClassInfo?: object,
2477
+ oClassInfo?: T & ThisType<T & sap.gantt.config.LayoutGroup>,
2478
2478
  /**
2479
2479
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2480
2480
  * used by this class
@@ -2545,7 +2545,7 @@ declare namespace sap {
2545
2545
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
2546
2546
  */
2547
2547
  // @ts-ignore
2548
- static extend(
2548
+ static extend<T extends Record<string, unknown>>(
2549
2549
  /**
2550
2550
  * Name of the class being created
2551
2551
  */
@@ -2553,7 +2553,7 @@ declare namespace sap {
2553
2553
  /**
2554
2554
  * Object literal with information about the class
2555
2555
  */
2556
- oClassInfo?: object,
2556
+ oClassInfo?: T & ThisType<T & sap.gantt.config.Locale>,
2557
2557
  /**
2558
2558
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2559
2559
  * used by this class
@@ -2690,7 +2690,7 @@ declare namespace sap {
2690
2690
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
2691
2691
  */
2692
2692
  // @ts-ignore
2693
- static extend(
2693
+ static extend<T extends Record<string, unknown>>(
2694
2694
  /**
2695
2695
  * Name of the class being created
2696
2696
  */
@@ -2698,7 +2698,7 @@ declare namespace sap {
2698
2698
  /**
2699
2699
  * Object literal with information about the class
2700
2700
  */
2701
- oClassInfo?: object,
2701
+ oClassInfo?: T & ThisType<T & sap.gantt.config.Mode>,
2702
2702
  /**
2703
2703
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2704
2704
  * used by this class
@@ -2816,7 +2816,7 @@ declare namespace sap {
2816
2816
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.config.ToolbarGroup.extend}.
2817
2817
  */
2818
2818
  // @ts-ignore
2819
- static extend(
2819
+ static extend<T extends Record<string, unknown>>(
2820
2820
  /**
2821
2821
  * Name of the class being created
2822
2822
  */
@@ -2824,7 +2824,7 @@ declare namespace sap {
2824
2824
  /**
2825
2825
  * Object literal with information about the class
2826
2826
  */
2827
- oClassInfo?: object,
2827
+ oClassInfo?: T & ThisType<T & sap.gantt.config.ModeGroup>,
2828
2828
  /**
2829
2829
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2830
2830
  * used by this class
@@ -2889,7 +2889,7 @@ declare namespace sap {
2889
2889
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
2890
2890
  */
2891
2891
  // @ts-ignore
2892
- static extend(
2892
+ static extend<T extends Record<string, unknown>>(
2893
2893
  /**
2894
2894
  * Name of the class being created
2895
2895
  */
@@ -2897,7 +2897,7 @@ declare namespace sap {
2897
2897
  /**
2898
2898
  * Object literal with information about the class
2899
2899
  */
2900
- oClassInfo?: object,
2900
+ oClassInfo?: T & ThisType<T & sap.gantt.config.ObjectType>,
2901
2901
  /**
2902
2902
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2903
2903
  * used by this class
@@ -3026,7 +3026,7 @@ declare namespace sap {
3026
3026
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.config.ToolbarGroup.extend}.
3027
3027
  */
3028
3028
  // @ts-ignore
3029
- static extend(
3029
+ static extend<T extends Record<string, unknown>>(
3030
3030
  /**
3031
3031
  * Name of the class being created
3032
3032
  */
@@ -3034,7 +3034,7 @@ declare namespace sap {
3034
3034
  /**
3035
3035
  * Object literal with information about the class
3036
3036
  */
3037
- oClassInfo?: object,
3037
+ oClassInfo?: T & ThisType<T & sap.gantt.config.SettingGroup>,
3038
3038
  /**
3039
3039
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3040
3040
  * used by this class
@@ -3104,7 +3104,7 @@ declare namespace sap {
3104
3104
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3105
3105
  */
3106
3106
  // @ts-ignore
3107
- static extend(
3107
+ static extend<T extends Record<string, unknown>>(
3108
3108
  /**
3109
3109
  * Name of the class being created
3110
3110
  */
@@ -3112,7 +3112,7 @@ declare namespace sap {
3112
3112
  /**
3113
3113
  * Object literal with information about the class
3114
3114
  */
3115
- oClassInfo?: object,
3115
+ oClassInfo?: T & ThisType<T & sap.gantt.config.SettingItem>,
3116
3116
  /**
3117
3117
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3118
3118
  * used by this class
@@ -3226,7 +3226,7 @@ declare namespace sap {
3226
3226
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3227
3227
  */
3228
3228
  // @ts-ignore
3229
- static extend(
3229
+ static extend<T extends Record<string, unknown>>(
3230
3230
  /**
3231
3231
  * Name of the class being created
3232
3232
  */
@@ -3234,7 +3234,7 @@ declare namespace sap {
3234
3234
  /**
3235
3235
  * Object literal with information about the class
3236
3236
  */
3237
- oClassInfo?: object,
3237
+ oClassInfo?: T & ThisType<T & sap.gantt.config.Shape>,
3238
3238
  /**
3239
3239
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3240
3240
  * used by this class
@@ -3570,7 +3570,7 @@ declare namespace sap {
3570
3570
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3571
3571
  */
3572
3572
  // @ts-ignore
3573
- static extend(
3573
+ static extend<T extends Record<string, unknown>>(
3574
3574
  /**
3575
3575
  * Name of the class being created
3576
3576
  */
@@ -3578,7 +3578,7 @@ declare namespace sap {
3578
3578
  /**
3579
3579
  * Object literal with information about the class
3580
3580
  */
3581
- oClassInfo?: object,
3581
+ oClassInfo?: T & ThisType<T & sap.gantt.config.TimeAxis>,
3582
3582
  /**
3583
3583
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3584
3584
  * used by this class
@@ -3800,7 +3800,7 @@ declare namespace sap {
3800
3800
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3801
3801
  */
3802
3802
  // @ts-ignore
3803
- static extend(
3803
+ static extend<T extends Record<string, unknown>>(
3804
3804
  /**
3805
3805
  * Name of the class being created
3806
3806
  */
@@ -3808,7 +3808,7 @@ declare namespace sap {
3808
3808
  /**
3809
3809
  * Object literal with information about the class
3810
3810
  */
3811
- oClassInfo?: object,
3811
+ oClassInfo?: T & ThisType<T & sap.gantt.config.TimeHorizon>,
3812
3812
  /**
3813
3813
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3814
3814
  * used by this class
@@ -3900,7 +3900,7 @@ declare namespace sap {
3900
3900
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.config.ToolbarGroup.extend}.
3901
3901
  */
3902
3902
  // @ts-ignore
3903
- static extend(
3903
+ static extend<T extends Record<string, unknown>>(
3904
3904
  /**
3905
3905
  * Name of the class being created
3906
3906
  */
@@ -3908,7 +3908,7 @@ declare namespace sap {
3908
3908
  /**
3909
3909
  * Object literal with information about the class
3910
3910
  */
3911
- oClassInfo?: object,
3911
+ oClassInfo?: T & ThisType<T & sap.gantt.config.TimeZoomGroup>,
3912
3912
  /**
3913
3913
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3914
3914
  * used by this class
@@ -4072,7 +4072,7 @@ declare namespace sap {
4072
4072
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
4073
4073
  */
4074
4074
  // @ts-ignore
4075
- static extend(
4075
+ static extend<T extends Record<string, unknown>>(
4076
4076
  /**
4077
4077
  * Name of the class being created
4078
4078
  */
@@ -4080,7 +4080,7 @@ declare namespace sap {
4080
4080
  /**
4081
4081
  * Object literal with information about the class
4082
4082
  */
4083
- oClassInfo?: object,
4083
+ oClassInfo?: T & ThisType<T & sap.gantt.config.ToolbarGroup>,
4084
4084
  /**
4085
4085
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4086
4086
  * used by this class
@@ -4189,7 +4189,7 @@ declare namespace sap {
4189
4189
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
4190
4190
  */
4191
4191
  // @ts-ignore
4192
- static extend(
4192
+ static extend<T extends Record<string, unknown>>(
4193
4193
  /**
4194
4194
  * Name of the class being created
4195
4195
  */
@@ -4197,7 +4197,7 @@ declare namespace sap {
4197
4197
  /**
4198
4198
  * Object literal with information about the class
4199
4199
  */
4200
- oClassInfo?: object,
4200
+ oClassInfo?: T & ThisType<T & sap.gantt.config.ToolbarScheme>,
4201
4201
  /**
4202
4202
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4203
4203
  * used by this class
@@ -4477,7 +4477,7 @@ declare namespace sap {
4477
4477
  * the result can be influenced by vertical scroll bar position as visible rows may change with the movement
4478
4478
  * of the vertical scroll bar position.
4479
4479
  */
4480
- VisibleRows
4480
+ VisibleRows,
4481
4481
  }
4482
4482
  /**
4483
4483
  * Different time units used as part of the zoom level. They are names of d3 time unit classes.
@@ -4506,7 +4506,7 @@ declare namespace sap {
4506
4506
  /**
4507
4507
  * Time unit of year.
4508
4508
  */
4509
- year
4509
+ year,
4510
4510
  }
4511
4511
  /**
4512
4512
  * Define the type of zoom control in global tool bar
@@ -4534,7 +4534,7 @@ declare namespace sap {
4534
4534
  * Uses the SliderWithButtons control to modify the time zoom rate. The SliderWithButtons control consists
4535
4535
  * of zoom in and zoom out magnifier buttons and a slider.
4536
4536
  */
4537
- SliderWithButtons
4537
+ SliderWithButtons,
4538
4538
  }
4539
4539
  }
4540
4540
  /**
@@ -4622,7 +4622,7 @@ declare namespace sap {
4622
4622
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Rectangle.extend}.
4623
4623
  */
4624
4624
  // @ts-ignore
4625
- static extend(
4625
+ static extend<T extends Record<string, unknown>>(
4626
4626
  /**
4627
4627
  * Name of the class being created
4628
4628
  */
@@ -4630,7 +4630,7 @@ declare namespace sap {
4630
4630
  /**
4631
4631
  * Object literal with information about the class
4632
4632
  */
4633
- oClassInfo?: object,
4633
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.cal.Calendar>,
4634
4634
  /**
4635
4635
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4636
4636
  * used by this class
@@ -4984,7 +4984,7 @@ declare namespace sap {
4984
4984
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Path.extend}.
4985
4985
  */
4986
4986
  // @ts-ignore
4987
- static extend(
4987
+ static extend<T extends Record<string, unknown>>(
4988
4988
  /**
4989
4989
  * Name of the class being created
4990
4990
  */
@@ -4992,7 +4992,8 @@ declare namespace sap {
4992
4992
  /**
4993
4993
  * Object literal with information about the class
4994
4994
  */
4995
- oClassInfo?: object,
4995
+ oClassInfo?: T &
4996
+ ThisType<T & sap.gantt.shape.ext.rls.Relationship>,
4996
4997
  /**
4997
4998
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4998
4999
  * used by this class
@@ -5524,7 +5525,7 @@ declare namespace sap {
5524
5525
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.ext.rls.Relationship.extend}.
5525
5526
  */
5526
5527
  // @ts-ignore
5527
- static extend(
5528
+ static extend<T extends Record<string, unknown>>(
5528
5529
  /**
5529
5530
  * Name of the class being created
5530
5531
  */
@@ -5532,7 +5533,8 @@ declare namespace sap {
5532
5533
  /**
5533
5534
  * Object literal with information about the class
5534
5535
  */
5535
- oClassInfo?: object,
5536
+ oClassInfo?: T &
5537
+ ThisType<T & sap.gantt.shape.ext.rls.SelectedRelationship>,
5536
5538
  /**
5537
5539
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5538
5540
  * used by this class
@@ -5628,7 +5630,7 @@ declare namespace sap {
5628
5630
  /**
5629
5631
  * Start to start type.
5630
5632
  */
5631
- StartToStart
5633
+ StartToStart,
5632
5634
  }
5633
5635
  }
5634
5636
 
@@ -5683,7 +5685,7 @@ declare namespace sap {
5683
5685
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Path.extend}.
5684
5686
  */
5685
5687
  // @ts-ignore
5686
- static extend(
5688
+ static extend<T extends Record<string, unknown>>(
5687
5689
  /**
5688
5690
  * Name of the class being created
5689
5691
  */
@@ -5691,7 +5693,8 @@ declare namespace sap {
5691
5693
  /**
5692
5694
  * Object literal with information about the class
5693
5695
  */
5694
- oClassInfo?: object,
5696
+ oClassInfo?: T &
5697
+ ThisType<T & sap.gantt.shape.ext.ubc.UbcBorderPath>,
5695
5698
  /**
5696
5699
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5697
5700
  * used by this class
@@ -5800,7 +5803,7 @@ declare namespace sap {
5800
5803
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.ext.ubc.UbcPolygon.extend}.
5801
5804
  */
5802
5805
  // @ts-ignore
5803
- static extend(
5806
+ static extend<T extends Record<string, unknown>>(
5804
5807
  /**
5805
5808
  * Name of the class being created
5806
5809
  */
@@ -5808,7 +5811,10 @@ declare namespace sap {
5808
5811
  /**
5809
5812
  * Object literal with information about the class
5810
5813
  */
5811
- oClassInfo?: object,
5814
+ oClassInfo?: T &
5815
+ ThisType<
5816
+ T & sap.gantt.shape.ext.ubc.UbcOverCapacityZonePolygon
5817
+ >,
5812
5818
  /**
5813
5819
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5814
5820
  * used by this class
@@ -5920,7 +5926,7 @@ declare namespace sap {
5920
5926
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Polygon.extend}.
5921
5927
  */
5922
5928
  // @ts-ignore
5923
- static extend(
5929
+ static extend<T extends Record<string, unknown>>(
5924
5930
  /**
5925
5931
  * Name of the class being created
5926
5932
  */
@@ -5928,7 +5934,7 @@ declare namespace sap {
5928
5934
  /**
5929
5935
  * Object literal with information about the class
5930
5936
  */
5931
- oClassInfo?: object,
5937
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.ext.ubc.UbcPolygon>,
5932
5938
  /**
5933
5939
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5934
5940
  * used by this class
@@ -5986,7 +5992,7 @@ declare namespace sap {
5986
5992
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.ext.ubc.UbcPolygon.extend}.
5987
5993
  */
5988
5994
  // @ts-ignore
5989
- static extend(
5995
+ static extend<T extends Record<string, unknown>>(
5990
5996
  /**
5991
5997
  * Name of the class being created
5992
5998
  */
@@ -5994,7 +6000,10 @@ declare namespace sap {
5994
6000
  /**
5995
6001
  * Object literal with information about the class
5996
6002
  */
5997
- oClassInfo?: object,
6003
+ oClassInfo?: T &
6004
+ ThisType<
6005
+ T & sap.gantt.shape.ext.ubc.UbcShortageCapacityPolygon
6006
+ >,
5998
6007
  /**
5999
6008
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6000
6009
  * used by this class
@@ -6118,7 +6127,7 @@ declare namespace sap {
6118
6127
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Rectangle.extend}.
6119
6128
  */
6120
6129
  // @ts-ignore
6121
- static extend(
6130
+ static extend<T extends Record<string, unknown>>(
6122
6131
  /**
6123
6132
  * Name of the class being created
6124
6133
  */
@@ -6126,7 +6135,8 @@ declare namespace sap {
6126
6135
  /**
6127
6136
  * Object literal with information about the class
6128
6137
  */
6129
- oClassInfo?: object,
6138
+ oClassInfo?: T &
6139
+ ThisType<T & sap.gantt.shape.ext.ubc.UbcTooltipRectangle>,
6130
6140
  /**
6131
6141
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6132
6142
  * used by this class
@@ -6311,7 +6321,7 @@ declare namespace sap {
6311
6321
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.ext.ubc.UbcPolygon.extend}.
6312
6322
  */
6313
6323
  // @ts-ignore
6314
- static extend(
6324
+ static extend<T extends Record<string, unknown>>(
6315
6325
  /**
6316
6326
  * Name of the class being created
6317
6327
  */
@@ -6319,7 +6329,10 @@ declare namespace sap {
6319
6329
  /**
6320
6330
  * Object literal with information about the class
6321
6331
  */
6322
- oClassInfo?: object,
6332
+ oClassInfo?: T &
6333
+ ThisType<
6334
+ T & sap.gantt.shape.ext.ubc.UbcUnderCapacityZonePolygon
6335
+ >,
6323
6336
  /**
6324
6337
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6325
6338
  * used by this class
@@ -6395,7 +6408,7 @@ declare namespace sap {
6395
6408
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.ext.ubc.UbcPolygon.extend}.
6396
6409
  */
6397
6410
  // @ts-ignore
6398
- static extend(
6411
+ static extend<T extends Record<string, unknown>>(
6399
6412
  /**
6400
6413
  * Name of the class being created
6401
6414
  */
@@ -6403,7 +6416,8 @@ declare namespace sap {
6403
6416
  /**
6404
6417
  * Object literal with information about the class
6405
6418
  */
6406
- oClassInfo?: object,
6419
+ oClassInfo?: T &
6420
+ ThisType<T & sap.gantt.shape.ext.ubc.UbcUsedPolygon>,
6407
6421
  /**
6408
6422
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6409
6423
  * used by this class
@@ -6518,7 +6532,7 @@ declare namespace sap {
6518
6532
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Group.extend}.
6519
6533
  */
6520
6534
  // @ts-ignore
6521
- static extend(
6535
+ static extend<T extends Record<string, unknown>>(
6522
6536
  /**
6523
6537
  * Name of the class being created
6524
6538
  */
@@ -6526,7 +6540,8 @@ declare namespace sap {
6526
6540
  /**
6527
6541
  * Object literal with information about the class
6528
6542
  */
6529
- oClassInfo?: object,
6543
+ oClassInfo?: T &
6544
+ ThisType<T & sap.gantt.shape.ext.ubc.UtilizationBarChart>,
6530
6545
  /**
6531
6546
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6532
6547
  * used by this class
@@ -6618,7 +6633,7 @@ declare namespace sap {
6618
6633
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Path.extend}.
6619
6634
  */
6620
6635
  // @ts-ignore
6621
- static extend(
6636
+ static extend<T extends Record<string, unknown>>(
6622
6637
  /**
6623
6638
  * Name of the class being created
6624
6639
  */
@@ -6626,7 +6641,8 @@ declare namespace sap {
6626
6641
  /**
6627
6642
  * Object literal with information about the class
6628
6643
  */
6629
- oClassInfo?: object,
6644
+ oClassInfo?: T &
6645
+ ThisType<T & sap.gantt.shape.ext.ulc.UlcBorderPath>,
6630
6646
  /**
6631
6647
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6632
6648
  * used by this class
@@ -6714,7 +6730,7 @@ declare namespace sap {
6714
6730
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Path.extend}.
6715
6731
  */
6716
6732
  // @ts-ignore
6717
- static extend(
6733
+ static extend<T extends Record<string, unknown>>(
6718
6734
  /**
6719
6735
  * Name of the class being created
6720
6736
  */
@@ -6722,7 +6738,8 @@ declare namespace sap {
6722
6738
  /**
6723
6739
  * Object literal with information about the class
6724
6740
  */
6725
- oClassInfo?: object,
6741
+ oClassInfo?: T &
6742
+ ThisType<T & sap.gantt.shape.ext.ulc.UlcClipingPath>,
6726
6743
  /**
6727
6744
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6728
6745
  * used by this class
@@ -6776,7 +6793,7 @@ declare namespace sap {
6776
6793
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.ClipPath.extend}.
6777
6794
  */
6778
6795
  // @ts-ignore
6779
- static extend(
6796
+ static extend<T extends Record<string, unknown>>(
6780
6797
  /**
6781
6798
  * Name of the class being created
6782
6799
  */
@@ -6784,7 +6801,8 @@ declare namespace sap {
6784
6801
  /**
6785
6802
  * Object literal with information about the class
6786
6803
  */
6787
- oClassInfo?: object,
6804
+ oClassInfo?: T &
6805
+ ThisType<T & sap.gantt.shape.ext.ulc.UlcClipPath>,
6788
6806
  /**
6789
6807
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6790
6808
  * used by this class
@@ -6850,7 +6868,7 @@ declare namespace sap {
6850
6868
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Group.extend}.
6851
6869
  */
6852
6870
  // @ts-ignore
6853
- static extend(
6871
+ static extend<T extends Record<string, unknown>>(
6854
6872
  /**
6855
6873
  * Name of the class being created
6856
6874
  */
@@ -6858,7 +6876,8 @@ declare namespace sap {
6858
6876
  /**
6859
6877
  * Object literal with information about the class
6860
6878
  */
6861
- oClassInfo?: object,
6879
+ oClassInfo?: T &
6880
+ ThisType<T & sap.gantt.shape.ext.ulc.UlcDimension>,
6862
6881
  /**
6863
6882
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6864
6883
  * used by this class
@@ -6898,7 +6917,7 @@ declare namespace sap {
6898
6917
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Line.extend}.
6899
6918
  */
6900
6919
  // @ts-ignore
6901
- static extend(
6920
+ static extend<T extends Record<string, unknown>>(
6902
6921
  /**
6903
6922
  * Name of the class being created
6904
6923
  */
@@ -6906,7 +6925,8 @@ declare namespace sap {
6906
6925
  /**
6907
6926
  * Object literal with information about the class
6908
6927
  */
6909
- oClassInfo?: object,
6928
+ oClassInfo?: T &
6929
+ ThisType<T & sap.gantt.shape.ext.ulc.UlcMiddleLine>,
6910
6930
  /**
6911
6931
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6912
6932
  * used by this class
@@ -7074,7 +7094,7 @@ declare namespace sap {
7074
7094
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.ext.ulc.UlcRectangle.extend}.
7075
7095
  */
7076
7096
  // @ts-ignore
7077
- static extend(
7097
+ static extend<T extends Record<string, unknown>>(
7078
7098
  /**
7079
7099
  * Name of the class being created
7080
7100
  */
@@ -7082,7 +7102,10 @@ declare namespace sap {
7082
7102
  /**
7083
7103
  * Object literal with information about the class
7084
7104
  */
7085
- oClassInfo?: object,
7105
+ oClassInfo?: T &
7106
+ ThisType<
7107
+ T & sap.gantt.shape.ext.ulc.UlcOverCapacityZoneRectangle
7108
+ >,
7086
7109
  /**
7087
7110
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7088
7111
  * used by this class
@@ -7176,7 +7199,7 @@ declare namespace sap {
7176
7199
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.ext.ulc.UlcRectangle.extend}.
7177
7200
  */
7178
7201
  // @ts-ignore
7179
- static extend(
7202
+ static extend<T extends Record<string, unknown>>(
7180
7203
  /**
7181
7204
  * Name of the class being created
7182
7205
  */
@@ -7184,7 +7207,8 @@ declare namespace sap {
7184
7207
  /**
7185
7208
  * Object literal with information about the class
7186
7209
  */
7187
- oClassInfo?: object,
7210
+ oClassInfo?: T &
7211
+ ThisType<T & sap.gantt.shape.ext.ulc.UlcOverClipRectangle>,
7188
7212
  /**
7189
7213
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7190
7214
  * used by this class
@@ -7262,7 +7286,7 @@ declare namespace sap {
7262
7286
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Rectangle.extend}.
7263
7287
  */
7264
7288
  // @ts-ignore
7265
- static extend(
7289
+ static extend<T extends Record<string, unknown>>(
7266
7290
  /**
7267
7291
  * Name of the class being created
7268
7292
  */
@@ -7270,7 +7294,8 @@ declare namespace sap {
7270
7294
  /**
7271
7295
  * Object literal with information about the class
7272
7296
  */
7273
- oClassInfo?: object,
7297
+ oClassInfo?: T &
7298
+ ThisType<T & sap.gantt.shape.ext.ulc.UlcRectangle>,
7274
7299
  /**
7275
7300
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7276
7301
  * used by this class
@@ -7395,7 +7420,7 @@ declare namespace sap {
7395
7420
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.ext.ulc.UlcRectangle.extend}.
7396
7421
  */
7397
7422
  // @ts-ignore
7398
- static extend(
7423
+ static extend<T extends Record<string, unknown>>(
7399
7424
  /**
7400
7425
  * Name of the class being created
7401
7426
  */
@@ -7403,7 +7428,8 @@ declare namespace sap {
7403
7428
  /**
7404
7429
  * Object literal with information about the class
7405
7430
  */
7406
- oClassInfo?: object,
7431
+ oClassInfo?: T &
7432
+ ThisType<T & sap.gantt.shape.ext.ulc.UlcTooltipRectangle>,
7407
7433
  /**
7408
7434
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7409
7435
  * used by this class
@@ -7549,7 +7575,7 @@ declare namespace sap {
7549
7575
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.ext.ulc.UlcRectangle.extend}.
7550
7576
  */
7551
7577
  // @ts-ignore
7552
- static extend(
7578
+ static extend<T extends Record<string, unknown>>(
7553
7579
  /**
7554
7580
  * Name of the class being created
7555
7581
  */
@@ -7557,7 +7583,8 @@ declare namespace sap {
7557
7583
  /**
7558
7584
  * Object literal with information about the class
7559
7585
  */
7560
- oClassInfo?: object,
7586
+ oClassInfo?: T &
7587
+ ThisType<T & sap.gantt.shape.ext.ulc.UlcUnderClipRectangle>,
7561
7588
  /**
7562
7589
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7563
7590
  * used by this class
@@ -7703,7 +7730,7 @@ declare namespace sap {
7703
7730
  * dimention2: 105% dimention1:
7704
7731
  * 70%-0
7705
7732
  * dimention2: 105%-0 >100% Zone OverCapacityClipping
7706
- * 50%
7733
+ * <100% Zone 50%
7707
7734
  * UnderCapacityClipping Dimensions
7708
7735
  *
7709
7736
  *
@@ -7743,7 +7770,7 @@ declare namespace sap {
7743
7770
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Shape.extend}.
7744
7771
  */
7745
7772
  // @ts-ignore
7746
- static extend(
7773
+ static extend<T extends Record<string, unknown>>(
7747
7774
  /**
7748
7775
  * Name of the class being created
7749
7776
  */
@@ -7751,7 +7778,8 @@ declare namespace sap {
7751
7778
  /**
7752
7779
  * Object literal with information about the class
7753
7780
  */
7754
- oClassInfo?: object,
7781
+ oClassInfo?: T &
7782
+ ThisType<T & sap.gantt.shape.ext.ulc.UtilizationLineChart>,
7755
7783
  /**
7756
7784
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7757
7785
  * used by this class
@@ -7891,7 +7919,7 @@ declare namespace sap {
7891
7919
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Path.extend}.
7892
7920
  */
7893
7921
  // @ts-ignore
7894
- static extend(
7922
+ static extend<T extends Record<string, unknown>>(
7895
7923
  /**
7896
7924
  * Name of the class being created
7897
7925
  */
@@ -7899,7 +7927,7 @@ declare namespace sap {
7899
7927
  /**
7900
7928
  * Object literal with information about the class
7901
7929
  */
7902
- oClassInfo?: object,
7930
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.ext.Chevron>,
7903
7931
  /**
7904
7932
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7905
7933
  * used by this class
@@ -8114,7 +8142,7 @@ declare namespace sap {
8114
8142
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Path.extend}.
8115
8143
  */
8116
8144
  // @ts-ignore
8117
- static extend(
8145
+ static extend<T extends Record<string, unknown>>(
8118
8146
  /**
8119
8147
  * Name of the class being created
8120
8148
  */
@@ -8122,7 +8150,7 @@ declare namespace sap {
8122
8150
  /**
8123
8151
  * Object literal with information about the class
8124
8152
  */
8125
- oClassInfo?: object,
8153
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.ext.Cursor>,
8126
8154
  /**
8127
8155
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8128
8156
  * used by this class
@@ -8307,7 +8335,7 @@ declare namespace sap {
8307
8335
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Path.extend}.
8308
8336
  */
8309
8337
  // @ts-ignore
8310
- static extend(
8338
+ static extend<T extends Record<string, unknown>>(
8311
8339
  /**
8312
8340
  * Name of the class being created
8313
8341
  */
@@ -8315,7 +8343,7 @@ declare namespace sap {
8315
8343
  /**
8316
8344
  * Object literal with information about the class
8317
8345
  */
8318
- oClassInfo?: object,
8346
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.ext.Diamond>,
8319
8347
  /**
8320
8348
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8321
8349
  * used by this class
@@ -8465,7 +8493,7 @@ declare namespace sap {
8465
8493
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Text.extend}.
8466
8494
  */
8467
8495
  // @ts-ignore
8468
- static extend(
8496
+ static extend<T extends Record<string, unknown>>(
8469
8497
  /**
8470
8498
  * Name of the class being created
8471
8499
  */
@@ -8473,7 +8501,7 @@ declare namespace sap {
8473
8501
  /**
8474
8502
  * Object literal with information about the class
8475
8503
  */
8476
- oClassInfo?: object,
8504
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.ext.Iconfont>,
8477
8505
  /**
8478
8506
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8479
8507
  * used by this class
@@ -8598,7 +8626,7 @@ declare namespace sap {
8598
8626
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Polygon.extend}.
8599
8627
  */
8600
8628
  // @ts-ignore
8601
- static extend(
8629
+ static extend<T extends Record<string, unknown>>(
8602
8630
  /**
8603
8631
  * Name of the class being created
8604
8632
  */
@@ -8606,7 +8634,7 @@ declare namespace sap {
8606
8634
  /**
8607
8635
  * Object literal with information about the class
8608
8636
  */
8609
- oClassInfo?: object,
8637
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.ext.Pentangle>,
8610
8638
  /**
8611
8639
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8612
8640
  * used by this class
@@ -8733,7 +8761,7 @@ declare namespace sap {
8733
8761
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Definitions.extend}.
8734
8762
  */
8735
8763
  // @ts-ignore
8736
- static extend(
8764
+ static extend<T extends Record<string, unknown>>(
8737
8765
  /**
8738
8766
  * Name of the class being created
8739
8767
  */
@@ -8741,7 +8769,7 @@ declare namespace sap {
8741
8769
  /**
8742
8770
  * Object literal with information about the class
8743
8771
  */
8744
- oClassInfo?: object,
8772
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.ext.TextRepeat>,
8745
8773
  /**
8746
8774
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8747
8775
  * used by this class
@@ -9059,7 +9087,7 @@ declare namespace sap {
9059
9087
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Path.extend}.
9060
9088
  */
9061
9089
  // @ts-ignore
9062
- static extend(
9090
+ static extend<T extends Record<string, unknown>>(
9063
9091
  /**
9064
9092
  * Name of the class being created
9065
9093
  */
@@ -9067,7 +9095,7 @@ declare namespace sap {
9067
9095
  /**
9068
9096
  * Object literal with information about the class
9069
9097
  */
9070
- oClassInfo?: object,
9098
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.ext.Triangle>,
9071
9099
  /**
9072
9100
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9073
9101
  * used by this class
@@ -9482,7 +9510,7 @@ declare namespace sap {
9482
9510
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Shape.extend}.
9483
9511
  */
9484
9512
  // @ts-ignore
9485
- static extend(
9513
+ static extend<T extends Record<string, unknown>>(
9486
9514
  /**
9487
9515
  * Name of the class being created
9488
9516
  */
@@ -9490,7 +9518,7 @@ declare namespace sap {
9490
9518
  /**
9491
9519
  * Object literal with information about the class
9492
9520
  */
9493
- oClassInfo?: object,
9521
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.Circle>,
9494
9522
  /**
9495
9523
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9496
9524
  * used by this class
@@ -9664,7 +9692,7 @@ declare namespace sap {
9664
9692
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Shape.extend}.
9665
9693
  */
9666
9694
  // @ts-ignore
9667
- static extend(
9695
+ static extend<T extends Record<string, unknown>>(
9668
9696
  /**
9669
9697
  * Name of the class being created
9670
9698
  */
@@ -9672,7 +9700,7 @@ declare namespace sap {
9672
9700
  /**
9673
9701
  * Object literal with information about the class
9674
9702
  */
9675
- oClassInfo?: object,
9703
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.ClipPath>,
9676
9704
  /**
9677
9705
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9678
9706
  * used by this class
@@ -9796,7 +9824,7 @@ declare namespace sap {
9796
9824
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Shape.extend}.
9797
9825
  */
9798
9826
  // @ts-ignore
9799
- static extend(
9827
+ static extend<T extends Record<string, unknown>>(
9800
9828
  /**
9801
9829
  * Name of the class being created
9802
9830
  */
@@ -9804,7 +9832,7 @@ declare namespace sap {
9804
9832
  /**
9805
9833
  * Object literal with information about the class
9806
9834
  */
9807
- oClassInfo?: object,
9835
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.Definitions>,
9808
9836
  /**
9809
9837
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9810
9838
  * used by this class
@@ -9963,7 +9991,7 @@ declare namespace sap {
9963
9991
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Shape.extend}.
9964
9992
  */
9965
9993
  // @ts-ignore
9966
- static extend(
9994
+ static extend<T extends Record<string, unknown>>(
9967
9995
  /**
9968
9996
  * Name of the class being created
9969
9997
  */
@@ -9971,7 +9999,7 @@ declare namespace sap {
9971
9999
  /**
9972
10000
  * Object literal with information about the class
9973
10001
  */
9974
- oClassInfo?: object,
10002
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.Group>,
9975
10003
  /**
9976
10004
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9977
10005
  * used by this class
@@ -10131,7 +10159,7 @@ declare namespace sap {
10131
10159
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Shape.extend}.
10132
10160
  */
10133
10161
  // @ts-ignore
10134
- static extend(
10162
+ static extend<T extends Record<string, unknown>>(
10135
10163
  /**
10136
10164
  * Name of the class being created
10137
10165
  */
@@ -10139,7 +10167,7 @@ declare namespace sap {
10139
10167
  /**
10140
10168
  * Object literal with information about the class
10141
10169
  */
10142
- oClassInfo?: object,
10170
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.Image>,
10143
10171
  /**
10144
10172
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10145
10173
  * used by this class
@@ -10353,7 +10381,7 @@ declare namespace sap {
10353
10381
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Shape.extend}.
10354
10382
  */
10355
10383
  // @ts-ignore
10356
- static extend(
10384
+ static extend<T extends Record<string, unknown>>(
10357
10385
  /**
10358
10386
  * Name of the class being created
10359
10387
  */
@@ -10361,7 +10389,7 @@ declare namespace sap {
10361
10389
  /**
10362
10390
  * Object literal with information about the class
10363
10391
  */
10364
- oClassInfo?: object,
10392
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.Line>,
10365
10393
  /**
10366
10394
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10367
10395
  * used by this class
@@ -10588,7 +10616,7 @@ declare namespace sap {
10588
10616
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Shape.extend}.
10589
10617
  */
10590
10618
  // @ts-ignore
10591
- static extend(
10619
+ static extend<T extends Record<string, unknown>>(
10592
10620
  /**
10593
10621
  * Name of the class being created
10594
10622
  */
@@ -10596,7 +10624,7 @@ declare namespace sap {
10596
10624
  /**
10597
10625
  * Object literal with information about the class
10598
10626
  */
10599
- oClassInfo?: object,
10627
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.Path>,
10600
10628
  /**
10601
10629
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10602
10630
  * used by this class
@@ -10748,7 +10776,7 @@ declare namespace sap {
10748
10776
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Shape.extend}.
10749
10777
  */
10750
10778
  // @ts-ignore
10751
- static extend(
10779
+ static extend<T extends Record<string, unknown>>(
10752
10780
  /**
10753
10781
  * Name of the class being created
10754
10782
  */
@@ -10756,7 +10784,7 @@ declare namespace sap {
10756
10784
  /**
10757
10785
  * Object literal with information about the class
10758
10786
  */
10759
- oClassInfo?: object,
10787
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.Polygon>,
10760
10788
  /**
10761
10789
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10762
10790
  * used by this class
@@ -10858,7 +10886,7 @@ declare namespace sap {
10858
10886
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Shape.extend}.
10859
10887
  */
10860
10888
  // @ts-ignore
10861
- static extend(
10889
+ static extend<T extends Record<string, unknown>>(
10862
10890
  /**
10863
10891
  * Name of the class being created
10864
10892
  */
@@ -10866,7 +10894,7 @@ declare namespace sap {
10866
10894
  /**
10867
10895
  * Object literal with information about the class
10868
10896
  */
10869
- oClassInfo?: object,
10897
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.Polyline>,
10870
10898
  /**
10871
10899
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10872
10900
  * used by this class
@@ -10988,7 +11016,7 @@ declare namespace sap {
10988
11016
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Shape.extend}.
10989
11017
  */
10990
11018
  // @ts-ignore
10991
- static extend(
11019
+ static extend<T extends Record<string, unknown>>(
10992
11020
  /**
10993
11021
  * Name of the class being created
10994
11022
  */
@@ -10996,7 +11024,7 @@ declare namespace sap {
10996
11024
  /**
10997
11025
  * Object literal with information about the class
10998
11026
  */
10999
- oClassInfo?: object,
11027
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.Rectangle>,
11000
11028
  /**
11001
11029
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11002
11030
  * used by this class
@@ -11272,7 +11300,7 @@ declare namespace sap {
11272
11300
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Path.extend}.
11273
11301
  */
11274
11302
  // @ts-ignore
11275
- static extend(
11303
+ static extend<T extends Record<string, unknown>>(
11276
11304
  /**
11277
11305
  * Name of the class being created
11278
11306
  */
@@ -11280,7 +11308,7 @@ declare namespace sap {
11280
11308
  /**
11281
11309
  * Object literal with information about the class
11282
11310
  */
11283
- oClassInfo?: object,
11311
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.ResizeShadowShape>,
11284
11312
  /**
11285
11313
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11286
11314
  * used by this class
@@ -11342,7 +11370,7 @@ declare namespace sap {
11342
11370
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Path.extend}.
11343
11371
  */
11344
11372
  // @ts-ignore
11345
- static extend(
11373
+ static extend<T extends Record<string, unknown>>(
11346
11374
  /**
11347
11375
  * Name of the class being created
11348
11376
  */
@@ -11350,7 +11378,7 @@ declare namespace sap {
11350
11378
  /**
11351
11379
  * Object literal with information about the class
11352
11380
  */
11353
- oClassInfo?: object,
11381
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.SelectedShape>,
11354
11382
  /**
11355
11383
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11356
11384
  * used by this class
@@ -11721,7 +11749,7 @@ declare namespace sap {
11721
11749
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
11722
11750
  */
11723
11751
  // @ts-ignore
11724
- static extend(
11752
+ static extend<T extends Record<string, unknown>>(
11725
11753
  /**
11726
11754
  * Name of the class being created
11727
11755
  */
@@ -11729,7 +11757,7 @@ declare namespace sap {
11729
11757
  /**
11730
11758
  * Object literal with information about the class
11731
11759
  */
11732
- oClassInfo?: object,
11760
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.Shape>,
11733
11761
  /**
11734
11762
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11735
11763
  * used by this class
@@ -12700,7 +12728,7 @@ declare namespace sap {
12700
12728
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.shape.Shape.extend}.
12701
12729
  */
12702
12730
  // @ts-ignore
12703
- static extend(
12731
+ static extend<T extends Record<string, unknown>>(
12704
12732
  /**
12705
12733
  * Name of the class being created
12706
12734
  */
@@ -12708,7 +12736,7 @@ declare namespace sap {
12708
12736
  /**
12709
12737
  * Object literal with information about the class
12710
12738
  */
12711
- oClassInfo?: object,
12739
+ oClassInfo?: T & ThisType<T & sap.gantt.shape.Text>,
12712
12740
  /**
12713
12741
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
12714
12742
  * used by this class
@@ -13018,7 +13046,7 @@ declare namespace sap {
13018
13046
  /**
13019
13047
  * Relationship shapes connecting two in-row shape instances.
13020
13048
  */
13021
- Relationship
13049
+ Relationship,
13022
13050
  }
13023
13051
  }
13024
13052
 
@@ -13292,7 +13320,7 @@ declare namespace sap {
13292
13320
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
13293
13321
  */
13294
13322
  // @ts-ignore
13295
- static extend(
13323
+ static extend<T extends Record<string, unknown>>(
13296
13324
  /**
13297
13325
  * Name of the class being created
13298
13326
  */
@@ -13300,7 +13328,8 @@ declare namespace sap {
13300
13328
  /**
13301
13329
  * Object literal with information about the class
13302
13330
  */
13303
- oClassInfo?: object,
13331
+ oClassInfo?: T &
13332
+ ThisType<T & sap.gantt.axistime.AxisTimeStrategyBase>,
13304
13333
  /**
13305
13334
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
13306
13335
  * used by this class
@@ -13800,7 +13829,7 @@ declare namespace sap {
13800
13829
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.axistime.AxisTimeStrategyBase.extend}.
13801
13830
  */
13802
13831
  // @ts-ignore
13803
- static extend(
13832
+ static extend<T extends Record<string, unknown>>(
13804
13833
  /**
13805
13834
  * Name of the class being created
13806
13835
  */
@@ -13808,7 +13837,7 @@ declare namespace sap {
13808
13837
  /**
13809
13838
  * Object literal with information about the class
13810
13839
  */
13811
- oClassInfo?: object,
13840
+ oClassInfo?: T & ThisType<T & sap.gantt.axistime.FullScreenStrategy>,
13812
13841
  /**
13813
13842
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
13814
13843
  * used by this class
@@ -13851,7 +13880,7 @@ declare namespace sap {
13851
13880
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.axistime.AxisTimeStrategyBase.extend}.
13852
13881
  */
13853
13882
  // @ts-ignore
13854
- static extend(
13883
+ static extend<T extends Record<string, unknown>>(
13855
13884
  /**
13856
13885
  * Name of the class being created
13857
13886
  */
@@ -13859,7 +13888,8 @@ declare namespace sap {
13859
13888
  /**
13860
13889
  * Object literal with information about the class
13861
13890
  */
13862
- oClassInfo?: object,
13891
+ oClassInfo?: T &
13892
+ ThisType<T & sap.gantt.axistime.ProportionZoomStrategy>,
13863
13893
  /**
13864
13894
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
13865
13895
  * used by this class
@@ -13899,7 +13929,7 @@ declare namespace sap {
13899
13929
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.axistime.AxisTimeStrategyBase.extend}.
13900
13930
  */
13901
13931
  // @ts-ignore
13902
- static extend(
13932
+ static extend<T extends Record<string, unknown>>(
13903
13933
  /**
13904
13934
  * Name of the class being created
13905
13935
  */
@@ -13907,7 +13937,8 @@ declare namespace sap {
13907
13937
  /**
13908
13938
  * Object literal with information about the class
13909
13939
  */
13910
- oClassInfo?: object,
13940
+ oClassInfo?: T &
13941
+ ThisType<T & sap.gantt.axistime.StepwiseZoomStrategy>,
13911
13942
  /**
13912
13943
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
13913
13944
  * used by this class
@@ -14050,7 +14081,7 @@ declare namespace sap {
14050
14081
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
14051
14082
  */
14052
14083
  // @ts-ignore
14053
- static extend(
14084
+ static extend<T extends Record<string, unknown>>(
14054
14085
  /**
14055
14086
  * Name of the class being created
14056
14087
  */
@@ -14058,7 +14089,7 @@ declare namespace sap {
14058
14089
  /**
14059
14090
  * Object literal with information about the class
14060
14091
  */
14061
- oClassInfo?: object,
14092
+ oClassInfo?: T & ThisType<T & sap.gantt.control.Cell>,
14062
14093
  /**
14063
14094
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14064
14095
  * used by this class
@@ -14211,7 +14242,7 @@ declare namespace sap {
14211
14242
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.def.DefBase.extend}.
14212
14243
  */
14213
14244
  // @ts-ignore
14214
- static extend(
14245
+ static extend<T extends Record<string, unknown>>(
14215
14246
  /**
14216
14247
  * Name of the class being created
14217
14248
  */
@@ -14219,7 +14250,7 @@ declare namespace sap {
14219
14250
  /**
14220
14251
  * Object literal with information about the class
14221
14252
  */
14222
- oClassInfo?: object,
14253
+ oClassInfo?: T & ThisType<T & sap.gantt.def.cal.Calendar>,
14223
14254
  /**
14224
14255
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14225
14256
  * used by this class
@@ -14362,7 +14393,7 @@ declare namespace sap {
14362
14393
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.def.SvgDefs.extend}.
14363
14394
  */
14364
14395
  // @ts-ignore
14365
- static extend(
14396
+ static extend<T extends Record<string, unknown>>(
14366
14397
  /**
14367
14398
  * Name of the class being created
14368
14399
  */
@@ -14370,7 +14401,7 @@ declare namespace sap {
14370
14401
  /**
14371
14402
  * Object literal with information about the class
14372
14403
  */
14373
- oClassInfo?: object,
14404
+ oClassInfo?: T & ThisType<T & sap.gantt.def.cal.CalendarDefs>,
14374
14405
  /**
14375
14406
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14376
14407
  * used by this class
@@ -14412,7 +14443,7 @@ declare namespace sap {
14412
14443
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.def.DefBase.extend}.
14413
14444
  */
14414
14445
  // @ts-ignore
14415
- static extend(
14446
+ static extend<T extends Record<string, unknown>>(
14416
14447
  /**
14417
14448
  * Name of the class being created
14418
14449
  */
@@ -14420,7 +14451,7 @@ declare namespace sap {
14420
14451
  /**
14421
14452
  * Object literal with information about the class
14422
14453
  */
14423
- oClassInfo?: object,
14454
+ oClassInfo?: T & ThisType<T & sap.gantt.def.cal.TimeInterval>,
14424
14455
  /**
14425
14456
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14426
14457
  * used by this class
@@ -14539,7 +14570,7 @@ declare namespace sap {
14539
14570
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.def.DefBase.extend}.
14540
14571
  */
14541
14572
  // @ts-ignore
14542
- static extend(
14573
+ static extend<T extends Record<string, unknown>>(
14543
14574
  /**
14544
14575
  * Name of the class being created
14545
14576
  */
@@ -14547,7 +14578,8 @@ declare namespace sap {
14547
14578
  /**
14548
14579
  * Object literal with information about the class
14549
14580
  */
14550
- oClassInfo?: object,
14581
+ oClassInfo?: T &
14582
+ ThisType<T & sap.gantt.def.filter.MorphologyFilter>,
14551
14583
  /**
14552
14584
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14553
14585
  * used by this class
@@ -14644,7 +14676,7 @@ declare namespace sap {
14644
14676
  /**
14645
14677
  * Turns every color to white.
14646
14678
  */
14647
- AllToWhite
14679
+ AllToWhite,
14648
14680
  }
14649
14681
  /**
14650
14682
  * Morphology Operators.
@@ -14659,7 +14691,7 @@ declare namespace sap {
14659
14691
  /**
14660
14692
  * Slimmer Morphology.
14661
14693
  */
14662
- Erode
14694
+ Erode,
14663
14695
  }
14664
14696
  }
14665
14697
 
@@ -14748,7 +14780,7 @@ declare namespace sap {
14748
14780
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.def.DefBase.extend}.
14749
14781
  */
14750
14782
  // @ts-ignore
14751
- static extend(
14783
+ static extend<T extends Record<string, unknown>>(
14752
14784
  /**
14753
14785
  * Name of the class being created
14754
14786
  */
@@ -14756,7 +14788,8 @@ declare namespace sap {
14756
14788
  /**
14757
14789
  * Object literal with information about the class
14758
14790
  */
14759
- oClassInfo?: object,
14791
+ oClassInfo?: T &
14792
+ ThisType<T & sap.gantt.def.gradient.LinearGradient>,
14760
14793
  /**
14761
14794
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14762
14795
  * used by this class
@@ -14958,7 +14991,7 @@ declare namespace sap {
14958
14991
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.def.DefBase.extend}.
14959
14992
  */
14960
14993
  // @ts-ignore
14961
- static extend(
14994
+ static extend<T extends Record<string, unknown>>(
14962
14995
  /**
14963
14996
  * Name of the class being created
14964
14997
  */
@@ -14966,7 +14999,7 @@ declare namespace sap {
14966
14999
  /**
14967
15000
  * Object literal with information about the class
14968
15001
  */
14969
- oClassInfo?: object,
15002
+ oClassInfo?: T & ThisType<T & sap.gantt.def.gradient.Stop>,
14970
15003
  /**
14971
15004
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14972
15005
  * used by this class
@@ -15122,7 +15155,7 @@ declare namespace sap {
15122
15155
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.def.pattern.PatternBase.extend}.
15123
15156
  */
15124
15157
  // @ts-ignore
15125
- static extend(
15158
+ static extend<T extends Record<string, unknown>>(
15126
15159
  /**
15127
15160
  * Name of the class being created
15128
15161
  */
@@ -15130,7 +15163,8 @@ declare namespace sap {
15130
15163
  /**
15131
15164
  * Object literal with information about the class
15132
15165
  */
15133
- oClassInfo?: object,
15166
+ oClassInfo?: T &
15167
+ ThisType<T & sap.gantt.def.pattern.BackSlashPattern>,
15134
15168
  /**
15135
15169
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15136
15170
  * used by this class
@@ -15238,7 +15272,7 @@ declare namespace sap {
15238
15272
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.def.DefBase.extend}.
15239
15273
  */
15240
15274
  // @ts-ignore
15241
- static extend(
15275
+ static extend<T extends Record<string, unknown>>(
15242
15276
  /**
15243
15277
  * Name of the class being created
15244
15278
  */
@@ -15246,7 +15280,7 @@ declare namespace sap {
15246
15280
  /**
15247
15281
  * Object literal with information about the class
15248
15282
  */
15249
- oClassInfo?: object,
15283
+ oClassInfo?: T & ThisType<T & sap.gantt.def.pattern.PatternBase>,
15250
15284
  /**
15251
15285
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15252
15286
  * used by this class
@@ -15386,7 +15420,7 @@ declare namespace sap {
15386
15420
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.def.pattern.PatternBase.extend}.
15387
15421
  */
15388
15422
  // @ts-ignore
15389
- static extend(
15423
+ static extend<T extends Record<string, unknown>>(
15390
15424
  /**
15391
15425
  * Name of the class being created
15392
15426
  */
@@ -15394,7 +15428,7 @@ declare namespace sap {
15394
15428
  /**
15395
15429
  * Object literal with information about the class
15396
15430
  */
15397
- oClassInfo?: object,
15431
+ oClassInfo?: T & ThisType<T & sap.gantt.def.pattern.SlashPattern>,
15398
15432
  /**
15399
15433
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15400
15434
  * used by this class
@@ -15517,7 +15551,7 @@ declare namespace sap {
15517
15551
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
15518
15552
  */
15519
15553
  // @ts-ignore
15520
- static extend(
15554
+ static extend<T extends Record<string, unknown>>(
15521
15555
  /**
15522
15556
  * Name of the class being created
15523
15557
  */
@@ -15525,7 +15559,7 @@ declare namespace sap {
15525
15559
  /**
15526
15560
  * Object literal with information about the class
15527
15561
  */
15528
- oClassInfo?: object,
15562
+ oClassInfo?: T & ThisType<T & sap.gantt.def.DefBase>,
15529
15563
  /**
15530
15564
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15531
15565
  * used by this class
@@ -15644,7 +15678,7 @@ declare namespace sap {
15644
15678
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.ManagedObject.extend}.
15645
15679
  */
15646
15680
  // @ts-ignore
15647
- static extend(
15681
+ static extend<T extends Record<string, unknown>>(
15648
15682
  /**
15649
15683
  * Name of the class being created
15650
15684
  */
@@ -15652,7 +15686,7 @@ declare namespace sap {
15652
15686
  /**
15653
15687
  * Object literal with information about the class
15654
15688
  */
15655
- oClassInfo?: object,
15689
+ oClassInfo?: T & ThisType<T & sap.gantt.def.SvgDefs>,
15656
15690
  /**
15657
15691
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15658
15692
  * used by this class
@@ -15745,7 +15779,7 @@ declare namespace sap {
15745
15779
  * with the cursor line through the whole drag-and-drop process, and thus you can precisely determine the
15746
15780
  * start time when you drop the shape.
15747
15781
  */
15748
- Start
15782
+ Start,
15749
15783
  }
15750
15784
  }
15751
15785
 
@@ -15889,7 +15923,7 @@ declare namespace sap {
15889
15923
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.legend.LegendBase.extend}.
15890
15924
  */
15891
15925
  // @ts-ignore
15892
- static extend(
15926
+ static extend<T extends Record<string, unknown>>(
15893
15927
  /**
15894
15928
  * Name of the class being created
15895
15929
  */
@@ -15897,7 +15931,7 @@ declare namespace sap {
15897
15931
  /**
15898
15932
  * Object literal with information about the class
15899
15933
  */
15900
- oClassInfo?: object,
15934
+ oClassInfo?: T & ThisType<T & sap.gantt.legend.DimensionLegend>,
15901
15935
  /**
15902
15936
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15903
15937
  * used by this class
@@ -16107,7 +16141,7 @@ declare namespace sap {
16107
16141
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
16108
16142
  */
16109
16143
  // @ts-ignore
16110
- static extend(
16144
+ static extend<T extends Record<string, unknown>>(
16111
16145
  /**
16112
16146
  * Name of the class being created
16113
16147
  */
@@ -16115,7 +16149,7 @@ declare namespace sap {
16115
16149
  /**
16116
16150
  * Object literal with information about the class
16117
16151
  */
16118
- oClassInfo?: object,
16152
+ oClassInfo?: T & ThisType<T & sap.gantt.legend.LegendBase>,
16119
16153
  /**
16120
16154
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16121
16155
  * used by this class
@@ -16278,7 +16312,7 @@ declare namespace sap {
16278
16312
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
16279
16313
  */
16280
16314
  // @ts-ignore
16281
- static extend(
16315
+ static extend<T extends Record<string, unknown>>(
16282
16316
  /**
16283
16317
  * Name of the class being created
16284
16318
  */
@@ -16286,7 +16320,7 @@ declare namespace sap {
16286
16320
  /**
16287
16321
  * Object literal with information about the class
16288
16322
  */
16289
- oClassInfo?: object,
16323
+ oClassInfo?: T & ThisType<T & sap.gantt.legend.LegendContainer>,
16290
16324
  /**
16291
16325
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16292
16326
  * used by this class
@@ -16482,7 +16516,7 @@ declare namespace sap {
16482
16516
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.legend.LegendBase.extend}.
16483
16517
  */
16484
16518
  // @ts-ignore
16485
- static extend(
16519
+ static extend<T extends Record<string, unknown>>(
16486
16520
  /**
16487
16521
  * Name of the class being created
16488
16522
  */
@@ -16490,7 +16524,7 @@ declare namespace sap {
16490
16524
  /**
16491
16525
  * Object literal with information about the class
16492
16526
  */
16493
- oClassInfo?: object,
16527
+ oClassInfo?: T & ThisType<T & sap.gantt.legend.ListLegend>,
16494
16528
  /**
16495
16529
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16496
16530
  * used by this class
@@ -16574,7 +16608,7 @@ declare namespace sap {
16574
16608
  /**
16575
16609
  * The list legend item has a unchecked checkbox.
16576
16610
  */
16577
- Unchecked
16611
+ Unchecked,
16578
16612
  }
16579
16613
  }
16580
16614
 
@@ -17100,7 +17134,7 @@ declare namespace sap {
17100
17134
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BaseShape.extend}.
17101
17135
  */
17102
17136
  // @ts-ignore
17103
- static extend(
17137
+ static extend<T extends Record<string, unknown>>(
17104
17138
  /**
17105
17139
  * Name of the class being created
17106
17140
  */
@@ -17108,7 +17142,7 @@ declare namespace sap {
17108
17142
  /**
17109
17143
  * Object literal with information about the class
17110
17144
  */
17111
- oClassInfo?: object,
17145
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.shapes.Shape>,
17112
17146
  /**
17113
17147
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
17114
17148
  * used by this class
@@ -17471,7 +17505,7 @@ declare namespace sap {
17471
17505
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.shapes.Shape.extend}.
17472
17506
  */
17473
17507
  // @ts-ignore
17474
- static extend(
17508
+ static extend<T extends Record<string, unknown>>(
17475
17509
  /**
17476
17510
  * Name of the class being created
17477
17511
  */
@@ -17479,7 +17513,7 @@ declare namespace sap {
17479
17513
  /**
17480
17514
  * Object literal with information about the class
17481
17515
  */
17482
- oClassInfo?: object,
17516
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.shapes.Task>,
17483
17517
  /**
17484
17518
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
17485
17519
  * used by this class
@@ -17600,7 +17634,7 @@ declare namespace sap {
17600
17634
  /**
17601
17635
  * Summary task is aligned at the top.
17602
17636
  */
17603
- Top
17637
+ Top,
17604
17638
  }
17605
17639
  /**
17606
17640
  * @SINCE 1.69
@@ -18615,7 +18649,7 @@ declare namespace sap {
18615
18649
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BaseDiamond.extend}.
18616
18650
  */
18617
18651
  // @ts-ignore
18618
- static extend(
18652
+ static extend<T extends Record<string, unknown>>(
18619
18653
  /**
18620
18654
  * Name of the class being created
18621
18655
  */
@@ -18623,7 +18657,7 @@ declare namespace sap {
18623
18657
  /**
18624
18658
  * Object literal with information about the class
18625
18659
  */
18626
- oClassInfo?: object,
18660
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.AdhocDiamond>,
18627
18661
  /**
18628
18662
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
18629
18663
  * used by this class
@@ -18880,7 +18914,7 @@ declare namespace sap {
18880
18914
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
18881
18915
  */
18882
18916
  // @ts-ignore
18883
- static extend(
18917
+ static extend<T extends Record<string, unknown>>(
18884
18918
  /**
18885
18919
  * Name of the class being created
18886
18920
  */
@@ -18888,7 +18922,7 @@ declare namespace sap {
18888
18922
  /**
18889
18923
  * Object literal with information about the class
18890
18924
  */
18891
- oClassInfo?: object,
18925
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.AdhocLine>,
18892
18926
  /**
18893
18927
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
18894
18928
  * used by this class
@@ -19302,7 +19336,7 @@ declare namespace sap {
19302
19336
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BaseRectangle.extend}.
19303
19337
  */
19304
19338
  // @ts-ignore
19305
- static extend(
19339
+ static extend<T extends Record<string, unknown>>(
19306
19340
  /**
19307
19341
  * Name of the class being created
19308
19342
  */
@@ -19310,7 +19344,7 @@ declare namespace sap {
19310
19344
  /**
19311
19345
  * Object literal with information about the class
19312
19346
  */
19313
- oClassInfo?: object,
19347
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.BaseCalendar>,
19314
19348
  /**
19315
19349
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
19316
19350
  * used by this class
@@ -19392,7 +19426,7 @@ declare namespace sap {
19392
19426
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BaseRectangle.extend}.
19393
19427
  */
19394
19428
  // @ts-ignore
19395
- static extend(
19429
+ static extend<T extends Record<string, unknown>>(
19396
19430
  /**
19397
19431
  * Name of the class being created
19398
19432
  */
@@ -19400,7 +19434,7 @@ declare namespace sap {
19400
19434
  /**
19401
19435
  * Object literal with information about the class
19402
19436
  */
19403
- oClassInfo?: object,
19437
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.BaseChevron>,
19404
19438
  /**
19405
19439
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
19406
19440
  * used by this class
@@ -19554,7 +19588,7 @@ declare namespace sap {
19554
19588
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BaseShape.extend}.
19555
19589
  */
19556
19590
  // @ts-ignore
19557
- static extend(
19591
+ static extend<T extends Record<string, unknown>>(
19558
19592
  /**
19559
19593
  * Name of the class being created
19560
19594
  */
@@ -19562,7 +19596,7 @@ declare namespace sap {
19562
19596
  /**
19563
19597
  * Object literal with information about the class
19564
19598
  */
19565
- oClassInfo?: object,
19599
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.BaseConditionalShape>,
19566
19600
  /**
19567
19601
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
19568
19602
  * used by this class
@@ -19710,7 +19744,7 @@ declare namespace sap {
19710
19744
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BaseRectangle.extend}.
19711
19745
  */
19712
19746
  // @ts-ignore
19713
- static extend(
19747
+ static extend<T extends Record<string, unknown>>(
19714
19748
  /**
19715
19749
  * Name of the class being created
19716
19750
  */
@@ -19718,7 +19752,7 @@ declare namespace sap {
19718
19752
  /**
19719
19753
  * Object literal with information about the class
19720
19754
  */
19721
- oClassInfo?: object,
19755
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.BaseCursor>,
19722
19756
  /**
19723
19757
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
19724
19758
  * used by this class
@@ -19945,7 +19979,7 @@ declare namespace sap {
19945
19979
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BaseShape.extend}.
19946
19980
  */
19947
19981
  // @ts-ignore
19948
- static extend(
19982
+ static extend<T extends Record<string, unknown>>(
19949
19983
  /**
19950
19984
  * Name of the class being created
19951
19985
  */
@@ -19953,7 +19987,7 @@ declare namespace sap {
19953
19987
  /**
19954
19988
  * Object literal with information about the class
19955
19989
  */
19956
- oClassInfo?: object,
19990
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.BaseDeltaRectangle>,
19957
19991
  /**
19958
19992
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
19959
19993
  * used by this class
@@ -20251,7 +20285,7 @@ declare namespace sap {
20251
20285
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BaseRectangle.extend}.
20252
20286
  */
20253
20287
  // @ts-ignore
20254
- static extend(
20288
+ static extend<T extends Record<string, unknown>>(
20255
20289
  /**
20256
20290
  * Name of the class being created
20257
20291
  */
@@ -20259,7 +20293,7 @@ declare namespace sap {
20259
20293
  /**
20260
20294
  * Object literal with information about the class
20261
20295
  */
20262
- oClassInfo?: object,
20296
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.BaseDiamond>,
20263
20297
  /**
20264
20298
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
20265
20299
  * used by this class
@@ -20365,7 +20399,7 @@ declare namespace sap {
20365
20399
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BaseShape.extend}.
20366
20400
  */
20367
20401
  // @ts-ignore
20368
- static extend(
20402
+ static extend<T extends Record<string, unknown>>(
20369
20403
  /**
20370
20404
  * Name of the class being created
20371
20405
  */
@@ -20373,7 +20407,7 @@ declare namespace sap {
20373
20407
  /**
20374
20408
  * Object literal with information about the class
20375
20409
  */
20376
- oClassInfo?: object,
20410
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.BaseGroup>,
20377
20411
  /**
20378
20412
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
20379
20413
  * used by this class
@@ -20475,7 +20509,7 @@ declare namespace sap {
20475
20509
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BaseText.extend}.
20476
20510
  */
20477
20511
  // @ts-ignore
20478
- static extend(
20512
+ static extend<T extends Record<string, unknown>>(
20479
20513
  /**
20480
20514
  * Name of the class being created
20481
20515
  */
@@ -20483,7 +20517,7 @@ declare namespace sap {
20483
20517
  /**
20484
20518
  * Object literal with information about the class
20485
20519
  */
20486
- oClassInfo?: object,
20520
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.BaseImage>,
20487
20521
  /**
20488
20522
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
20489
20523
  * used by this class
@@ -20627,7 +20661,7 @@ declare namespace sap {
20627
20661
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BaseShape.extend}.
20628
20662
  */
20629
20663
  // @ts-ignore
20630
- static extend(
20664
+ static extend<T extends Record<string, unknown>>(
20631
20665
  /**
20632
20666
  * Name of the class being created
20633
20667
  */
@@ -20635,7 +20669,7 @@ declare namespace sap {
20635
20669
  /**
20636
20670
  * Object literal with information about the class
20637
20671
  */
20638
- oClassInfo?: object,
20672
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.BaseLine>,
20639
20673
  /**
20640
20674
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
20641
20675
  * used by this class
@@ -20769,7 +20803,7 @@ declare namespace sap {
20769
20803
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BaseShape.extend}.
20770
20804
  */
20771
20805
  // @ts-ignore
20772
- static extend(
20806
+ static extend<T extends Record<string, unknown>>(
20773
20807
  /**
20774
20808
  * Name of the class being created
20775
20809
  */
@@ -20777,7 +20811,7 @@ declare namespace sap {
20777
20811
  /**
20778
20812
  * Object literal with information about the class
20779
20813
  */
20780
- oClassInfo?: object,
20814
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.BasePath>,
20781
20815
  /**
20782
20816
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
20783
20817
  * used by this class
@@ -20853,7 +20887,7 @@ declare namespace sap {
20853
20887
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BaseShape.extend}.
20854
20888
  */
20855
20889
  // @ts-ignore
20856
- static extend(
20890
+ static extend<T extends Record<string, unknown>>(
20857
20891
  /**
20858
20892
  * Name of the class being created
20859
20893
  */
@@ -20861,7 +20895,7 @@ declare namespace sap {
20861
20895
  /**
20862
20896
  * Object literal with information about the class
20863
20897
  */
20864
- oClassInfo?: object,
20898
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.BaseRectangle>,
20865
20899
  /**
20866
20900
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
20867
20901
  * used by this class
@@ -21043,7 +21077,7 @@ declare namespace sap {
21043
21077
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
21044
21078
  */
21045
21079
  // @ts-ignore
21046
- static extend(
21080
+ static extend<T extends Record<string, unknown>>(
21047
21081
  /**
21048
21082
  * Name of the class being created
21049
21083
  */
@@ -21051,7 +21085,7 @@ declare namespace sap {
21051
21085
  /**
21052
21086
  * Object literal with information about the class
21053
21087
  */
21054
- oClassInfo?: object,
21088
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.BaseShape>,
21055
21089
  /**
21056
21090
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
21057
21091
  * used by this class
@@ -21755,7 +21789,7 @@ declare namespace sap {
21755
21789
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BaseShape.extend}.
21756
21790
  */
21757
21791
  // @ts-ignore
21758
- static extend(
21792
+ static extend<T extends Record<string, unknown>>(
21759
21793
  /**
21760
21794
  * Name of the class being created
21761
21795
  */
@@ -21763,7 +21797,7 @@ declare namespace sap {
21763
21797
  /**
21764
21798
  * Object literal with information about the class
21765
21799
  */
21766
- oClassInfo?: object,
21800
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.BaseText>,
21767
21801
  /**
21768
21802
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
21769
21803
  * used by this class
@@ -22107,7 +22141,7 @@ declare namespace sap {
22107
22141
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BaseRectangle.extend}.
22108
22142
  */
22109
22143
  // @ts-ignore
22110
- static extend(
22144
+ static extend<T extends Record<string, unknown>>(
22111
22145
  /**
22112
22146
  * Name of the class being created
22113
22147
  */
@@ -22115,7 +22149,7 @@ declare namespace sap {
22115
22149
  /**
22116
22150
  * Object literal with information about the class
22117
22151
  */
22118
- oClassInfo?: object,
22152
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.BaseTriangle>,
22119
22153
  /**
22120
22154
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
22121
22155
  * used by this class
@@ -22501,7 +22535,7 @@ declare namespace sap {
22501
22535
  * `oClassInfo` might contain the same kind of information as described in {@link sap.m.OverflowToolbar.extend}.
22502
22536
  */
22503
22537
  // @ts-ignore
22504
- static extend(
22538
+ static extend<T extends Record<string, unknown>>(
22505
22539
  /**
22506
22540
  * Name of the class being created
22507
22541
  */
@@ -22509,7 +22543,7 @@ declare namespace sap {
22509
22543
  /**
22510
22544
  * Object literal with information about the class
22511
22545
  */
22512
- oClassInfo?: object,
22546
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.ContainerToolbar>,
22513
22547
  /**
22514
22548
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
22515
22549
  * used by this class
@@ -22928,7 +22962,8 @@ declare namespace sap {
22928
22962
  *
22929
22963
  * Placeholder is used to represent some of the buttons in a `sap.gantt.simple.ContainerToolbar` control.
22930
22964
  */
22931
- class ContainerToolbarPlaceholder extends sap.ui.core.Control
22965
+ class ContainerToolbarPlaceholder
22966
+ extends sap.ui.core.Control
22932
22967
  implements sap.m.IOverflowToolbarContent {
22933
22968
  /**
22934
22969
  * Constructor for a new placeholder used in the container toolbar.
@@ -22959,7 +22994,7 @@ declare namespace sap {
22959
22994
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
22960
22995
  */
22961
22996
  // @ts-ignore
22962
- static extend(
22997
+ static extend<T extends Record<string, unknown>>(
22963
22998
  /**
22964
22999
  * Name of the class being created
22965
23000
  */
@@ -22967,7 +23002,8 @@ declare namespace sap {
22967
23002
  /**
22968
23003
  * Object literal with information about the class
22969
23004
  */
22970
- oClassInfo?: object,
23005
+ oClassInfo?: T &
23006
+ ThisType<T & sap.gantt.simple.ContainerToolbarPlaceholder>,
22971
23007
  /**
22972
23008
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
22973
23009
  * used by this class
@@ -23210,7 +23246,7 @@ declare namespace sap {
23210
23246
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
23211
23247
  */
23212
23248
  // @ts-ignore
23213
- static extend(
23249
+ static extend<T extends Record<string, unknown>>(
23214
23250
  /**
23215
23251
  * Name of the class being created
23216
23252
  */
@@ -23218,7 +23254,7 @@ declare namespace sap {
23218
23254
  /**
23219
23255
  * Object literal with information about the class
23220
23256
  */
23221
- oClassInfo?: object,
23257
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.DeltaLine>,
23222
23258
  /**
23223
23259
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
23224
23260
  * used by this class
@@ -23772,7 +23808,7 @@ declare namespace sap {
23772
23808
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
23773
23809
  */
23774
23810
  // @ts-ignore
23775
- static extend(
23811
+ static extend<T extends Record<string, unknown>>(
23776
23812
  /**
23777
23813
  * Name of the class being created
23778
23814
  */
@@ -23780,7 +23816,7 @@ declare namespace sap {
23780
23816
  /**
23781
23817
  * Object literal with information about the class
23782
23818
  */
23783
- oClassInfo?: object,
23819
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.DimensionLegend>,
23784
23820
  /**
23785
23821
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
23786
23822
  * used by this class
@@ -23998,7 +24034,7 @@ declare namespace sap {
23998
24034
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
23999
24035
  */
24000
24036
  // @ts-ignore
24001
- static extend(
24037
+ static extend<T extends Record<string, unknown>>(
24002
24038
  /**
24003
24039
  * Name of the class being created
24004
24040
  */
@@ -24006,7 +24042,7 @@ declare namespace sap {
24006
24042
  /**
24007
24043
  * Object literal with information about the class
24008
24044
  */
24009
- oClassInfo?: object,
24045
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.GanttChartContainer>,
24010
24046
  /**
24011
24047
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
24012
24048
  * used by this class
@@ -25091,7 +25127,7 @@ declare namespace sap {
25091
25127
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
25092
25128
  */
25093
25129
  // @ts-ignore
25094
- static extend(
25130
+ static extend<T extends Record<string, unknown>>(
25095
25131
  /**
25096
25132
  * Name of the class being created
25097
25133
  */
@@ -25099,7 +25135,7 @@ declare namespace sap {
25099
25135
  /**
25100
25136
  * Object literal with information about the class
25101
25137
  */
25102
- oClassInfo?: object,
25138
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.GanttChartWithTable>,
25103
25139
  /**
25104
25140
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
25105
25141
  * used by this class
@@ -26864,7 +26900,7 @@ declare namespace sap {
26864
26900
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
26865
26901
  */
26866
26902
  // @ts-ignore
26867
- static extend(
26903
+ static extend<T extends Record<string, unknown>>(
26868
26904
  /**
26869
26905
  * Name of the class being created
26870
26906
  */
@@ -26872,7 +26908,7 @@ declare namespace sap {
26872
26908
  /**
26873
26909
  * Object literal with information about the class
26874
26910
  */
26875
- oClassInfo?: object,
26911
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.GanttPrinting>,
26876
26912
  /**
26877
26913
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
26878
26914
  * used by this class
@@ -27032,7 +27068,7 @@ declare namespace sap {
27032
27068
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.RowSettings.extend}.
27033
27069
  */
27034
27070
  // @ts-ignore
27035
- static extend(
27071
+ static extend<T extends Record<string, unknown>>(
27036
27072
  /**
27037
27073
  * Name of the class being created
27038
27074
  */
@@ -27040,7 +27076,7 @@ declare namespace sap {
27040
27076
  /**
27041
27077
  * Object literal with information about the class
27042
27078
  */
27043
- oClassInfo?: object,
27079
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.GanttRowSettings>,
27044
27080
  /**
27045
27081
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
27046
27082
  * used by this class
@@ -27420,7 +27456,7 @@ declare namespace sap {
27420
27456
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
27421
27457
  */
27422
27458
  // @ts-ignore
27423
- static extend(
27459
+ static extend<T extends Record<string, unknown>>(
27424
27460
  /**
27425
27461
  * Name of the class being created
27426
27462
  */
@@ -27428,7 +27464,7 @@ declare namespace sap {
27428
27464
  /**
27429
27465
  * Object literal with information about the class
27430
27466
  */
27431
- oClassInfo?: object,
27467
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.LegendColumnConfig>,
27432
27468
  /**
27433
27469
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
27434
27470
  * used by this class
@@ -27544,7 +27580,7 @@ declare namespace sap {
27544
27580
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
27545
27581
  */
27546
27582
  // @ts-ignore
27547
- static extend(
27583
+ static extend<T extends Record<string, unknown>>(
27548
27584
  /**
27549
27585
  * Name of the class being created
27550
27586
  */
@@ -27552,7 +27588,7 @@ declare namespace sap {
27552
27588
  /**
27553
27589
  * Object literal with information about the class
27554
27590
  */
27555
- oClassInfo?: object,
27591
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.LegendContainer>,
27556
27592
  /**
27557
27593
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
27558
27594
  * used by this class
@@ -27693,7 +27729,7 @@ declare namespace sap {
27693
27729
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
27694
27730
  */
27695
27731
  // @ts-ignore
27696
- static extend(
27732
+ static extend<T extends Record<string, unknown>>(
27697
27733
  /**
27698
27734
  * Name of the class being created
27699
27735
  */
@@ -27701,7 +27737,7 @@ declare namespace sap {
27701
27737
  /**
27702
27738
  * Object literal with information about the class
27703
27739
  */
27704
- oClassInfo?: object,
27740
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.LegendRowConfig>,
27705
27741
  /**
27706
27742
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
27707
27743
  * used by this class
@@ -27856,7 +27892,7 @@ declare namespace sap {
27856
27892
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BaseShape.extend}.
27857
27893
  */
27858
27894
  // @ts-ignore
27859
- static extend(
27895
+ static extend<T extends Record<string, unknown>>(
27860
27896
  /**
27861
27897
  * Name of the class being created
27862
27898
  */
@@ -27864,7 +27900,7 @@ declare namespace sap {
27864
27900
  /**
27865
27901
  * Object literal with information about the class
27866
27902
  */
27867
- oClassInfo?: object,
27903
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.LegendShapeGroup>,
27868
27904
  /**
27869
27905
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
27870
27906
  * used by this class
@@ -28009,7 +28045,7 @@ declare namespace sap {
28009
28045
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
28010
28046
  */
28011
28047
  // @ts-ignore
28012
- static extend(
28048
+ static extend<T extends Record<string, unknown>>(
28013
28049
  /**
28014
28050
  * Name of the class being created
28015
28051
  */
@@ -28017,7 +28053,7 @@ declare namespace sap {
28017
28053
  /**
28018
28054
  * Object literal with information about the class
28019
28055
  */
28020
- oClassInfo?: object,
28056
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.ListLegend>,
28021
28057
  /**
28022
28058
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
28023
28059
  * used by this class
@@ -28178,7 +28214,7 @@ declare namespace sap {
28178
28214
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
28179
28215
  */
28180
28216
  // @ts-ignore
28181
- static extend(
28217
+ static extend<T extends Record<string, unknown>>(
28182
28218
  /**
28183
28219
  * Name of the class being created
28184
28220
  */
@@ -28186,7 +28222,7 @@ declare namespace sap {
28186
28222
  /**
28187
28223
  * Object literal with information about the class
28188
28224
  */
28189
- oClassInfo?: object,
28225
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.ListLegendItem>,
28190
28226
  /**
28191
28227
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
28192
28228
  * used by this class
@@ -28361,7 +28397,7 @@ declare namespace sap {
28361
28397
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BasePath.extend}.
28362
28398
  */
28363
28399
  // @ts-ignore
28364
- static extend(
28400
+ static extend<T extends Record<string, unknown>>(
28365
28401
  /**
28366
28402
  * Name of the class being created
28367
28403
  */
@@ -28369,7 +28405,7 @@ declare namespace sap {
28369
28405
  /**
28370
28406
  * Object literal with information about the class
28371
28407
  */
28372
- oClassInfo?: object,
28408
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.Relationship>,
28373
28409
  /**
28374
28410
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
28375
28411
  * used by this class
@@ -28527,7 +28563,7 @@ declare namespace sap {
28527
28563
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
28528
28564
  */
28529
28565
  // @ts-ignore
28530
- static extend(
28566
+ static extend<T extends Record<string, unknown>>(
28531
28567
  /**
28532
28568
  * Name of the class being created
28533
28569
  */
@@ -28535,7 +28571,7 @@ declare namespace sap {
28535
28571
  /**
28536
28572
  * Object literal with information about the class
28537
28573
  */
28538
- oClassInfo?: object,
28574
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.ShapeScheme>,
28539
28575
  /**
28540
28576
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
28541
28577
  * used by this class
@@ -28663,7 +28699,7 @@ declare namespace sap {
28663
28699
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.UtilizationChart.extend}.
28664
28700
  */
28665
28701
  // @ts-ignore
28666
- static extend(
28702
+ static extend<T extends Record<string, unknown>>(
28667
28703
  /**
28668
28704
  * Name of the class being created
28669
28705
  */
@@ -28671,7 +28707,7 @@ declare namespace sap {
28671
28707
  /**
28672
28708
  * Object literal with information about the class
28673
28709
  */
28674
- oClassInfo?: object,
28710
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.UtilizationBarChart>,
28675
28711
  /**
28676
28712
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
28677
28713
  * used by this class
@@ -28797,7 +28833,7 @@ declare namespace sap {
28797
28833
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.BaseShape.extend}.
28798
28834
  */
28799
28835
  // @ts-ignore
28800
- static extend(
28836
+ static extend<T extends Record<string, unknown>>(
28801
28837
  /**
28802
28838
  * Name of the class being created
28803
28839
  */
@@ -28805,7 +28841,7 @@ declare namespace sap {
28805
28841
  /**
28806
28842
  * Object literal with information about the class
28807
28843
  */
28808
- oClassInfo?: object,
28844
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.UtilizationChart>,
28809
28845
  /**
28810
28846
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
28811
28847
  * used by this class
@@ -28962,7 +28998,7 @@ declare namespace sap {
28962
28998
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
28963
28999
  */
28964
29000
  // @ts-ignore
28965
- static extend(
29001
+ static extend<T extends Record<string, unknown>>(
28966
29002
  /**
28967
29003
  * Name of the class being created
28968
29004
  */
@@ -28970,7 +29006,7 @@ declare namespace sap {
28970
29006
  /**
28971
29007
  * Object literal with information about the class
28972
29008
  */
28973
- oClassInfo?: object,
29009
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.UtilizationDimension>,
28974
29010
  /**
28975
29011
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
28976
29012
  * used by this class
@@ -29116,7 +29152,7 @@ declare namespace sap {
29116
29152
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.simple.UtilizationChart.extend}.
29117
29153
  */
29118
29154
  // @ts-ignore
29119
- static extend(
29155
+ static extend<T extends Record<string, unknown>>(
29120
29156
  /**
29121
29157
  * Name of the class being created
29122
29158
  */
@@ -29124,7 +29160,7 @@ declare namespace sap {
29124
29160
  /**
29125
29161
  * Object literal with information about the class
29126
29162
  */
29127
- oClassInfo?: object,
29163
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.UtilizationLineChart>,
29128
29164
  /**
29129
29165
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
29130
29166
  * used by this class
@@ -29270,7 +29306,7 @@ declare namespace sap {
29270
29306
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
29271
29307
  */
29272
29308
  // @ts-ignore
29273
- static extend(
29309
+ static extend<T extends Record<string, unknown>>(
29274
29310
  /**
29275
29311
  * Name of the class being created
29276
29312
  */
@@ -29278,7 +29314,7 @@ declare namespace sap {
29278
29314
  /**
29279
29315
  * Object literal with information about the class
29280
29316
  */
29281
- oClassInfo?: object,
29317
+ oClassInfo?: T & ThisType<T & sap.gantt.simple.UtilizationPeriod>,
29282
29318
  /**
29283
29319
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
29284
29320
  * used by this class
@@ -29425,7 +29461,7 @@ declare namespace sap {
29425
29461
  /**
29426
29462
  * A time zoom control.
29427
29463
  */
29428
- TimeZoomControl
29464
+ TimeZoomControl,
29429
29465
  }
29430
29466
  /**
29431
29467
  * Gantt chart display types.
@@ -29442,7 +29478,7 @@ declare namespace sap {
29442
29478
  /**
29443
29479
  * The {@link sap.gantt.simple.GanttChartWithTable} control displays only a table.
29444
29480
  */
29445
- Table
29481
+ Table,
29446
29482
  }
29447
29483
  /**
29448
29484
  * @SINCE 1.84
@@ -29461,7 +29497,7 @@ declare namespace sap {
29461
29497
  /**
29462
29498
  * Vertical orientation
29463
29499
  */
29464
- Vertical
29500
+ Vertical,
29465
29501
  }
29466
29502
  /**
29467
29503
  * @SINCE 1.84
@@ -29476,7 +29512,7 @@ declare namespace sap {
29476
29512
  /**
29477
29513
  * No Marker present
29478
29514
  */
29479
- None
29515
+ None,
29480
29516
  }
29481
29517
  /**
29482
29518
  * @SINCE 1.60.0
@@ -29500,7 +29536,7 @@ declare namespace sap {
29500
29536
  /**
29501
29537
  * Start to start type.
29502
29538
  */
29503
- StartToStart
29539
+ StartToStart,
29504
29540
  }
29505
29541
  /**
29506
29542
  * @SINCE 1.68
@@ -30176,7 +30212,7 @@ declare namespace sap {
30176
30212
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
30177
30213
  */
30178
30214
  // @ts-ignore
30179
- static extend(
30215
+ static extend<T extends Record<string, unknown>>(
30180
30216
  /**
30181
30217
  * Name of the class being created
30182
30218
  */
@@ -30184,7 +30220,7 @@ declare namespace sap {
30184
30220
  /**
30185
30221
  * Object literal with information about the class
30186
30222
  */
30187
- oClassInfo?: object,
30223
+ oClassInfo?: T & ThisType<T & sap.gantt.AdhocLine>,
30188
30224
  /**
30189
30225
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
30190
30226
  * used by this class
@@ -30362,7 +30398,7 @@ declare namespace sap {
30362
30398
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.GanttChartBase.extend}.
30363
30399
  */
30364
30400
  // @ts-ignore
30365
- static extend(
30401
+ static extend<T extends Record<string, unknown>>(
30366
30402
  /**
30367
30403
  * Name of the class being created
30368
30404
  */
@@ -30370,7 +30406,7 @@ declare namespace sap {
30370
30406
  /**
30371
30407
  * Object literal with information about the class
30372
30408
  */
30373
- oClassInfo?: object,
30409
+ oClassInfo?: T & ThisType<T & sap.gantt.GanttChart>,
30374
30410
  /**
30375
30411
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
30376
30412
  * used by this class
@@ -31341,7 +31377,7 @@ declare namespace sap {
31341
31377
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
31342
31378
  */
31343
31379
  // @ts-ignore
31344
- static extend(
31380
+ static extend<T extends Record<string, unknown>>(
31345
31381
  /**
31346
31382
  * Name of the class being created
31347
31383
  */
@@ -31349,7 +31385,7 @@ declare namespace sap {
31349
31385
  /**
31350
31386
  * Object literal with information about the class
31351
31387
  */
31352
- oClassInfo?: object,
31388
+ oClassInfo?: T & ThisType<T & sap.gantt.GanttChartBase>,
31353
31389
  /**
31354
31390
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
31355
31391
  * used by this class
@@ -33594,7 +33630,7 @@ declare namespace sap {
33594
33630
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
33595
33631
  */
33596
33632
  // @ts-ignore
33597
- static extend(
33633
+ static extend<T extends Record<string, unknown>>(
33598
33634
  /**
33599
33635
  * Name of the class being created
33600
33636
  */
@@ -33602,7 +33638,7 @@ declare namespace sap {
33602
33638
  /**
33603
33639
  * Object literal with information about the class
33604
33640
  */
33605
- oClassInfo?: object,
33641
+ oClassInfo?: T & ThisType<T & sap.gantt.GanttChartContainer>,
33606
33642
  /**
33607
33643
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
33608
33644
  * used by this class
@@ -34517,7 +34553,7 @@ declare namespace sap {
34517
34553
  * `oClassInfo` might contain the same kind of information as described in {@link sap.gantt.GanttChartBase.extend}.
34518
34554
  */
34519
34555
  // @ts-ignore
34520
- static extend(
34556
+ static extend<T extends Record<string, unknown>>(
34521
34557
  /**
34522
34558
  * Name of the class being created
34523
34559
  */
@@ -34525,7 +34561,7 @@ declare namespace sap {
34525
34561
  /**
34526
34562
  * Object literal with information about the class
34527
34563
  */
34528
- oClassInfo?: object,
34564
+ oClassInfo?: T & ThisType<T & sap.gantt.GanttChartWithTable>,
34529
34565
  /**
34530
34566
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
34531
34567
  * used by this class
@@ -34780,7 +34816,7 @@ declare namespace sap {
34780
34816
  /**
34781
34817
  * Adhoc lines are on top of all other shapes and patterns.
34782
34818
  */
34783
- Top
34819
+ Top,
34784
34820
  }
34785
34821
  /**
34786
34822
  * @SINCE 1.84
@@ -34795,7 +34831,7 @@ declare namespace sap {
34795
34831
  /**
34796
34832
  * Delta lines are above all other shapes and patterns.
34797
34833
  */
34798
- Top
34834
+ Top,
34799
34835
  }
34800
34836
  /**
34801
34837
  * Defines how dragged ghost moves when dragging.
@@ -34816,7 +34852,7 @@ declare namespace sap {
34816
34852
  * in vertical direction when dragging, which means, the axis x will not change. When drag in vertical direction,
34817
34853
  * the ghost alignment will not work, and only one shape can be dragged.
34818
34854
  */
34819
- Vertical
34855
+ Vertical,
34820
34856
  }
34821
34857
  /**
34822
34858
  * Different zoom type for mouse wheel zooming
@@ -34833,7 +34869,7 @@ declare namespace sap {
34833
34869
  /**
34834
34870
  * The granularity is a whole zoom level, just like the global zoom slider does
34835
34871
  */
34836
- Stepwise
34872
+ Stepwise,
34837
34873
  }
34838
34874
  /**
34839
34875
  * Different selection mode for GanttChart
@@ -34855,7 +34891,7 @@ declare namespace sap {
34855
34891
  /**
34856
34892
  * Select one shape at a time
34857
34893
  */
34858
- Single
34894
+ Single,
34859
34895
  }
34860
34896
  }
34861
34897