mirror of
https://github.com/45Drives/cockpit-navigator.git
synced 2025-09-26 11:18:42 +02:00
17 lines
402 B
JavaScript
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";
|