UNPKG

@lfai/egeria-js-commons

Version:

Common module for storing static data such as key value objects, SVGs, icon mappings, API urls.

10 lines (9 loc) 231 B
export const eNavigateTo = (path) => { const event = new CustomEvent('EGERIA_EVENTS', { 'detail': { path: path, type: 'EGERIA_NAVIGATE_TO' } }); document.dispatchEvent(event); };