@cesdk/node 1.13.0-rc.1 → 1.13.1-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -236,6 +236,8 @@ export declare interface AssetResult extends Asset {
236
236
  };
237
237
  }
238
238
 
239
+ declare type _AssetResult = AssetResult;
240
+
239
241
  /** @public */
240
242
  declare interface AssetResultContext {
241
243
  sourceId: string;
@@ -316,6 +318,8 @@ export declare interface AssetSource {
316
318
  getSupportedMimeTypes?(): string[] | undefined;
317
319
  }
318
320
 
321
+ declare type _AssetSource = AssetSource;
322
+
319
323
  /**
320
324
  * Return type of a `findAssets` query.
321
325
  * @public
@@ -331,6 +335,8 @@ export declare interface AssetsQueryResult<T extends AssetResult = AssetResult>
331
335
  total: number;
332
336
  }
333
337
 
338
+ declare type _AssetsQueryResult = AssetsQueryResult;
339
+
334
340
  /**
335
341
  * @public
336
342
  */
@@ -2247,7 +2253,7 @@ export declare namespace ConfigTypes {
2247
2253
  * @deprecated This type definition has been moved
2248
2254
  * It can instead be imported directly as `HexColorString`
2249
2255
  */
2250
- export type HexColorString = HexColorString;
2256
+ export type HexColorString = _HexColorString;
2251
2257
  /**
2252
2258
  * @deprecated
2253
2259
  * This type definition has be removed. Please use the asset api at
@@ -2265,19 +2271,19 @@ export declare namespace ConfigTypes {
2265
2271
  * @deprecated
2266
2272
  * This type definition has been moved and can be imported directly as `AssetResult`.
2267
2273
  */
2268
- export type AssetResult = AssetResult;
2274
+ export type AssetResult = _AssetResult;
2269
2275
  /**
2270
2276
  * @deprecated
2271
2277
  * This type definition has been moved and can be imported directly as `AssetsQueryResult`.
2272
2278
  */
2273
- export type AssetsQueryResult = AssetsQueryResult;
2279
+ export type AssetsQueryResult = _AssetsQueryResult;
2274
2280
  /**
2275
2281
  * @deprecated
2276
2282
  * This type definition has been moved and can be imported directly as `AssetSource`,
2277
2283
  * when working with the asset api.
2278
2284
  * @public
2279
2285
  */
2280
- export type AssetSource = Omit<AssetSource, 'id'>;
2286
+ export type AssetSource = Omit<_AssetSource, 'id'>;
2281
2287
  /**
2282
2288
  * @deprecated This type definition is not used anymore and will be removed.
2283
2289
  */
@@ -3074,6 +3080,8 @@ export declare type GradientType = 'Linear' | 'Radial' | 'Conical';
3074
3080
  */
3075
3081
  export declare type HexColorString = string;
3076
3082
 
3083
+ declare type _HexColorString = HexColorString;
3084
+
3077
3085
  /**
3078
3086
  * A numerical identifier for a history stack
3079
3087
  * @public