@cesdk/engine 1.60.0-rc.2 → 1.60.0-rc.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -8276,7 +8276,6 @@ export declare interface Settings {
8276
8276
  *
8277
8277
  * @deprecated Use keyof Settings or extract the boolean keys from Settings instead.
8278
8278
  * @public
8279
- * @category Boolean Settings
8280
8279
  */
8281
8280
  export declare type SettingsBool = {
8282
8281
  [K in keyof Settings]: Settings[K] extends boolean ? K : never;
@@ -8287,7 +8286,6 @@ export declare type SettingsBool = {
8287
8286
  *
8288
8287
  * @deprecated Use keyof Settings or extract the color keys from Settings instead.
8289
8288
  * @public
8290
- * @category Color Settings
8291
8289
  */
8292
8290
  export declare type SettingsColor = {
8293
8291
  [K in keyof Settings]: Settings[K] extends Color ? K : never;
@@ -8298,7 +8296,6 @@ export declare type SettingsColor = {
8298
8296
  *
8299
8297
  * @public
8300
8298
  * @deprecated Use SettingsColor instead.
8301
- * @category Color Settings
8302
8299
  */
8303
8300
  export declare type SettingsColorRGBA = SettingsColor;
8304
8301
 
@@ -8307,7 +8304,6 @@ export declare type SettingsColorRGBA = SettingsColor;
8307
8304
  *
8308
8305
  * @deprecated Use keyof Settings or extract the enum keys from Settings instead.
8309
8306
  * @public
8310
- * @category Enum Settings
8311
8307
  */
8312
8308
  export declare type SettingsEnum = Pick<Settings, 'doubleClickSelectionMode' | 'touch/pinchAction' | 'touch/rotateAction' | 'camera/clamping/overshootMode'>;
8313
8309
 
@@ -8316,7 +8312,6 @@ export declare type SettingsEnum = Pick<Settings, 'doubleClickSelectionMode' | '
8316
8312
  *
8317
8313
  * @deprecated Use keyof Settings or extract the float keys from Settings instead.
8318
8314
  * @public
8319
- * @category Float Settings
8320
8315
  */
8321
8316
  export declare type SettingsFloat = Exclude<{
8322
8317
  [K in keyof Settings]: Settings[K] extends number ? K : never;
@@ -8326,7 +8321,6 @@ export declare type SettingsFloat = Exclude<{
8326
8321
  * Represents the integer settings available in the editor.
8327
8322
  *
8328
8323
  * @public
8329
- * @category Integer Settings
8330
8324
  */
8331
8325
  export declare type SettingsInt = 'maxImageSize';
8332
8326
 
@@ -8335,7 +8329,6 @@ export declare type SettingsInt = 'maxImageSize';
8335
8329
  *
8336
8330
  * @deprecated Use keyof Settings or extract the string keys from Settings instead.
8337
8331
  * @public
8338
- * @category String Settings
8339
8332
  */
8340
8333
  export declare type SettingsString = Exclude<{
8341
8334
  [K in keyof Settings]: Settings[K] extends string ? K : never;