rss-reader/src/constants.ts

9 lines
201 B
TypeScript

export const panelIdentifiers = {
FEEDS: "feeds",
SETTINGS: "settings",
};
export const readablePanelIdentifiers = {
[panelIdentifiers.FEEDS]: "Feeds",
[panelIdentifiers.SETTINGS]: "Settings",
};