const requestNavigation = ( route: string, resource: string | boolean = false, ) => { window.dispatchEvent( new CustomEvent("requestNavigation", { detail: { route, resource: typeof resource === "string" ? { "@id": resource } : resource, }, }), ); }; export default requestNavigation;