@cesdk/node 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/index.d.ts CHANGED
@@ -6505,7 +6505,7 @@ export declare class EditorAPI {
6505
6505
  *
6506
6506
  * ```javascript
6507
6507
  * engine.editor.findAllTransientResources().forEach((resource) => {
6508
- * const bufferURI = resource.url;
6508
+ * const bufferURI = resource.URL;
6509
6509
  * const length = engine.editor.getBufferLength(buffer);
6510
6510
  * const data = engine.editor.getBufferData(buffer, 0, length);
6511
6511
  * const blob = new Blob([data]);
@@ -8289,12 +8289,12 @@ export declare interface TextFontSizeOptions {
8289
8289
  * Represents a transient resource.
8290
8290
  *
8291
8291
  * The `TransientResource` interface provides a set of properties that describe a transient
8292
- * resource, including a URI and the size of the resource.
8292
+ * resource, including a URL and the size of the resource.
8293
8293
  *
8294
8294
  * @public
8295
8295
  */
8296
8296
  export declare interface TransientResource {
8297
- uri: string;
8297
+ URL: string;
8298
8298
  size: number;
8299
8299
  }
8300
8300