@dcl/sdk 7.0.0-2549756722.commit-32d0daa → 7.0.0-2569737935.commit-cdfa2fc
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/dist/ecs7/index.d.ts +8 -3
- package/dist/ecs7/index.js +67 -59
- package/dist/ecs7/index.min.js +1 -1
- package/dist/ecs7/index.min.js.map +1 -1
- package/package.json +4 -4
- package/types/ecs7/index.d.ts +8 -3
package/dist/ecs7/index.d.ts
CHANGED
@@ -234,9 +234,7 @@ export declare type EcsType<T = any> = {
|
|
234
234
|
/**
|
235
235
|
* @public
|
236
236
|
*/
|
237
|
-
export declare function Engine({ transports }?:
|
238
|
-
transports?: Transport[];
|
239
|
-
}): IEngine;
|
237
|
+
export declare function Engine({ transports }?: IEngineParams): IEngine;
|
240
238
|
|
241
239
|
/**
|
242
240
|
* @alpha * This file initialization is an alpha one. This is based on the old-ecs
|
@@ -306,6 +304,13 @@ export declare type IEngine = {
|
|
306
304
|
baseComponents: SdkComponetns;
|
307
305
|
};
|
308
306
|
|
307
|
+
/**
|
308
|
+
* @public
|
309
|
+
*/
|
310
|
+
export declare type IEngineParams = {
|
311
|
+
transports?: Transport[];
|
312
|
+
};
|
313
|
+
|
309
314
|
/** Include property keys from T where the property is assignable to U */
|
310
315
|
declare type IncludeUndefined<T> = {
|
311
316
|
[P in keyof T]: undefined extends T[P] ? P : never;
|