Allows to handle uncaught app/parcel errors. For apps it will be passed by ILC and handled centrally. For parcels it may be passed by Parcel component and handled there.
Describes all properties that are passed by ILC & single-spa to the application lifecycle Fns
Generated using TypeDoc
Entrypoint for SDK that should be used within application bundle. It works well with server and client side rendering.
Client side
At client side your app receives instance of the IlcAppSdk via props that are passed to it's lifecycle functions (LifeCycles). So everything is pretty simple here :) Typings can be loaded in the following way:
Server side
Unfortunately during app's SSR we don't have ILC in place. So we need to use result of the IlcSdk.processRequest (which implements AppSdkAdapter) to receive all the necessary data for
IlcAppSdk
initialization.