@cesdk/node 1.12.0 → 1.12.2
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.
|
Binary file
|
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
|
*/
|
|
@@ -2235,7 +2241,7 @@ export declare namespace ConfigTypes {
|
|
|
2235
2241
|
* @deprecated This type definition has been moved
|
|
2236
2242
|
* It can instead be imported directly as `HexColorString`
|
|
2237
2243
|
*/
|
|
2238
|
-
export type HexColorString =
|
|
2244
|
+
export type HexColorString = _HexColorString;
|
|
2239
2245
|
/**
|
|
2240
2246
|
* @deprecated
|
|
2241
2247
|
* This type definition has be removed. Please use the asset api at
|
|
@@ -2253,19 +2259,19 @@ export declare namespace ConfigTypes {
|
|
|
2253
2259
|
* @deprecated
|
|
2254
2260
|
* This type definition has been moved and can be imported directly as `AssetResult`.
|
|
2255
2261
|
*/
|
|
2256
|
-
export type AssetResult =
|
|
2262
|
+
export type AssetResult = _AssetResult;
|
|
2257
2263
|
/**
|
|
2258
2264
|
* @deprecated
|
|
2259
2265
|
* This type definition has been moved and can be imported directly as `AssetsQueryResult`.
|
|
2260
2266
|
*/
|
|
2261
|
-
export type AssetsQueryResult =
|
|
2267
|
+
export type AssetsQueryResult = _AssetsQueryResult;
|
|
2262
2268
|
/**
|
|
2263
2269
|
* @deprecated
|
|
2264
2270
|
* This type definition has been moved and can be imported directly as `AssetSource`,
|
|
2265
2271
|
* when working with the asset api.
|
|
2266
2272
|
* @public
|
|
2267
2273
|
*/
|
|
2268
|
-
export type AssetSource = Omit<
|
|
2274
|
+
export type AssetSource = Omit<_AssetSource, 'id'>;
|
|
2269
2275
|
/**
|
|
2270
2276
|
* @deprecated This type definition is not used anymore and will be removed.
|
|
2271
2277
|
*/
|
|
@@ -3058,6 +3064,8 @@ export declare type GradientType = 'Linear' | 'Radial' | 'Conical';
|
|
|
3058
3064
|
*/
|
|
3059
3065
|
export declare type HexColorString = string;
|
|
3060
3066
|
|
|
3067
|
+
declare type _HexColorString = HexColorString;
|
|
3068
|
+
|
|
3061
3069
|
/**
|
|
3062
3070
|
* A numerical identifier for a history stack
|
|
3063
3071
|
* @public
|