@cesdk/engine 1.62.0-nightly.20251001 → 1.62.0-nightly.20251003
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/assets/core/{cesdk-v1.62.0-nightly.20251001-E6TCHLY5.wasm → cesdk-v1.62.0-nightly.20251003-2GIC27JE.wasm} +0 -0
- package/assets/core/worker-host-v1.62.0-nightly.20251003.js +1 -0
- package/index.d.ts +3 -3
- package/index.js +1 -1
- package/package.json +1 -1
- package/assets/core/worker-host-v1.62.0-nightly.20251001.js +0 -1
- /package/assets/core/{cesdk-v1.62.0-nightly.20251001-44YCFRT6.data → cesdk-v1.62.0-nightly.20251003-44YCFRT6.data} +0 -0
package/index.d.ts
CHANGED
|
@@ -6645,7 +6645,7 @@ export declare class EditorAPI {
|
|
|
6645
6645
|
*
|
|
6646
6646
|
* ```javascript
|
|
6647
6647
|
* engine.editor.findAllTransientResources().forEach((resource) => {
|
|
6648
|
-
* const bufferURI = resource.
|
|
6648
|
+
* const bufferURI = resource.URL;
|
|
6649
6649
|
* const length = engine.editor.getBufferLength(buffer);
|
|
6650
6650
|
* const data = engine.editor.getBufferData(buffer, 0, length);
|
|
6651
6651
|
* const blob = new Blob([data]);
|
|
@@ -8576,12 +8576,12 @@ export declare interface TextFontSizeOptions {
|
|
|
8576
8576
|
* Represents a transient resource.
|
|
8577
8577
|
*
|
|
8578
8578
|
* The `TransientResource` interface provides a set of properties that describe a transient
|
|
8579
|
-
* resource, including a
|
|
8579
|
+
* resource, including a URL and the size of the resource.
|
|
8580
8580
|
*
|
|
8581
8581
|
* @public
|
|
8582
8582
|
*/
|
|
8583
8583
|
export declare interface TransientResource {
|
|
8584
|
-
|
|
8584
|
+
URL: string;
|
|
8585
8585
|
size: number;
|
|
8586
8586
|
}
|
|
8587
8587
|
|