UNPKG

@editorjs/editorjs

Version:

Editor.js — open source block-style WYSIWYG editor with JSON output

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; }