addOnUISdk
The core add-on UI SDK object which provides access to everything needed for add-on development. This includes determining the current version of the platform, an object to use for determining when the SDK has been initialized and ready for use, and other core objects you can use to access specific features you may want to use for building your add-on.
addOnUISdk Properties
Attribute
Name
Type
Description
readonlyaddOnUISdk.apiVersionstringCurrent version of the add-on SDK running.
readonlyaddOnUISdk.appobjectProvides access to the host application (Adobe Express)
addOnUISdk.constantsobjectA set of constants used throughout the add-on SDK.
readonlyaddOnUISdk.instanceobjectThe currently running add-on instance.
readonlyAddOnSdk.readyPromiseIndicates the addOnUISdk object has been initialized and you can start accessing the APIs. Register a call back with Promise.then or await this promise.
<!-- ## Methods
ready
Asynchronous
Example Usage:
await AddOnSdk.ready; -->