@cesdk/node 1.55.0-rc.0 → 1.55.0-rc.1

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
@@ -682,6 +682,10 @@ export declare class BlockAPI {
682
682
  /**
683
683
  * Exports a design block element as a file of the given mime type.
684
684
  * Performs an internal update to resolve the final layout for the blocks.
685
+ *
686
+ * Removes all pixels that exactly match the given RGB color and replaces them with transparency.
687
+ * The output includes two files: the masked image and the mask itself.
688
+ *
685
689
  * @param handle - The design block element to export.
686
690
  * @param mimeType - The mime type of the output file.
687
691
  * @param maskColorR - The red component of the special color mask color.
@@ -4108,6 +4112,10 @@ export declare type ExportOptions = {
4108
4112
  * The adjustment in size of the shape of the underlayer.
4109
4113
  */
4110
4114
  underlayerOffset?: number;
4115
+ /**
4116
+ * An abortsignal that can be used to cancel the export.
4117
+ */
4118
+ abortSignal?: AbortSignal;
4111
4119
  };
4112
4120
 
4113
4121
  /** @public */