IExtensionInitOptions interface
Options for extension initialization -- passed to DevOps.init()
Properties
apply |
Extensions that show UI should specify this to true in order for the current user's theme to be applied to this extension content. Defaults to true. |
loaded | True (the default) indicates that the content of this extension is ready to be shown/used as soon as the init handshake has completed. Otherwise (loaded: false), the extension must call DevOps.notifyLoadSucceeded() once it has finished loading. |
Property Details
applyTheme
Extensions that show UI should specify this to true in order for the current user's theme to be applied to this extension content. Defaults to true.
applyTheme?: boolean
Property Value
boolean
loaded
True (the default) indicates that the content of this extension is ready to be shown/used as soon as the init handshake has completed. Otherwise (loaded: false), the extension must call DevOps.notifyLoadSucceeded() once it has finished loading.
loaded?: boolean
Property Value
boolean