UNPKG

aliquidexplicabo

Version:

Editor.js — Native JS, based on API and Open Source

12 lines (11 loc) 265 B
/** * Describes Editor`s I18n API */ export interface I18n { /** * Perform translation with automatically added namespace like `tools.${toolName}` or `blockTunes.${tuneName}` * * @param dictKey - what to translate */ t(dictKey: string): string; }