export type BrowserBookmarkOptions = { acName: string; context: string; defaultViewLabel: string; containerName?: string; }; export type ShowHistoryActionOptions = { routeEndpoint: string; requestType: string; payload: any; options: any; routeKey: string; }; export type RestAPIPayload = { restApi?: string; reqType?: string; body?: any; }; export type BuildRestAPIPayload = { pageName?: string; pageSize?: number; [key: string]: any; }; export type RoutingInfo = { routesMeta?: any; routes?: any; appName: string; appAlias: string; reqContextName: string; reqServletPath: string; pxReqServletNameReal: string; appDelimeter: string; domain: string; searchParams?: string; orgName: string; isDefaultPortal: boolean; portalName: string; };