BootDocumentParams interface
Defines the input type for the launch function.
- Extends
-
BaseBootParams
Properties
| document |
Required. Information about the document. See definition of |
Inherited Properties
| container | Required. The HTML element for the document to be viewed in. |
| event |
Optional. Callback for event handling. |
| fetch |
Required. Callback used to provide an access token for accessing the document. |
| session |
Required. Information about the session. See definition of |
Property Details
documentInfo
Required. Information about the document. See definition of DocumentInfo for details.
documentInfo: DocumentInfo
Property Value
Inherited Property Details
container
Required. The HTML element for the document to be viewed in.
container: HTMLElement
Property Value
HTMLElement
Inherited From BaseBootParams.container
eventHandlers
Optional. Callback for event handling.
eventHandlers?: UiHostEventHandlers
Property Value
Inherited From BaseBootParams.eventHandlers
fetchAccessToken
Required. Callback used to provide an access token for accessing the document.
fetchAccessToken: (resourceUrl: string, claim?: string[]) => Promise<string>
Property Value
(resourceUrl: string, claim?: string[]) => Promise<string>
Inherited From BaseBootParams.fetchAccessToken
sessionInfo
Required. Information about the session. See definition of SessionInfo for details.
sessionInfo: SessionInfo
Property Value
Inherited From BaseBootParams.sessionInfo