Purpose:

Navigate your users back to where they left off in the host Encompass application, after they are done interacting with your application's user-interface

Sample Usage:

import host from '@elliemae/em-ssf-guest'

...

async function closeInteraction() {
  const transactionObject = await host.getObject('transaction')
  transactionObject.close()
}

closeInteraction()
import host from '@elliemae/em-ssf-guest'

...

host.getObject('transaction')
  .then(
    (transactionObject) => {
      transactionObject.close()
    }
  )

Interface:

Input:

None

Returns:

None