9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
export const panelIdentifiers = {
|
|
FEEDS: "feeds",
|
|
SETTINGS: "settings",
|
|
};
|
|
|
|
export const readablePanelIdentifiers = {
|
|
[panelIdentifiers.FEEDS]: "Feeds",
|
|
[panelIdentifiers.SETTINGS]: "Settings",
|
|
};
|