UNPKG

rss-mind-map

Version:

Rss mind map is a free open source mind map core.

32 lines (31 loc) 694 B
type LangPack = { addChild: string; addParent: string; addSibling: string; removeNode: string; focus: string; cancelFocus: string; moveUp: string; moveDown: string; link: string; chooseNodeToLinkTips: string; summary: string; fullscreen: string; toCenter: string; zoomOut: string; zoomIn: string; viewModeLeft: string; viewModeRight: string; viewModeSide: string; addDescription: string; openTaskInfo: string; createNewTask: string; addImage: string; removeImage: string; }; /** * @public */ export type Locale = 'en' | 'fr' | 'vi'; declare const i18n: Record<Locale, LangPack>; export default i18n;