Skip to main content

Type Alias: SetImageWidgetActiveBlock()

SetImageWidgetActiveBlock = (blockData) => Promise<void>

Function

Function signature for setting the active block in the image widget.

This function determines which configuration block is currently being edited in the image widget. The active block receives applied images and controls what options are available in the widget interface.

Parameters

blockData

ImageWidgetBlock

Data object containing information about the block to make active

Returns

Promise<void>

Promise that resolves when the active block has been updated

Example

// Set the active block to the logo customization area
setImageWidgetActiveBlock(logoBlockData);