2022-05-25 17:28:31 -03:00

17 lines
402 B
JavaScript

/**
* Notifications component instance to add notifs
*/
export const notificationsInjectionKey = Symbol();
/**
* Settings object {@link NavigatorSettings}
*/
export const settingsInjectionKey = Symbol();
/**
* Path history object
*/
export const pathHistoryInjectionKey = Symbol();
/**
* localStorage lookup key for last path
*/
export const lastPathStorageKey = "houstonNavigatorLastPathKey";