Skip to main content

Type Alias: SetImageWidgetLibraryState()

SetImageWidgetLibraryState = (isOpen) => Promise<void>

Function

Function signature for controlling the visibility of the image library overlay.

This function opens or closes the image library interface where users can select from previously uploaded images to apply to their product configurations. The library provides a consistent repository of images that can be reused across different product configurations.

Parameters

isOpen

boolean

Whether the image library should be displayed (true) or hidden (false)

Returns

Promise<void>

Promise that resolves when the visibility state has been updated

Example

// Open the image library
setImageWidgetLibraryState(true);

// Close the image library
setImageWidgetLibraryState(false);