UNPKG

@editorjs/editorjs

Version:

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

15 lines (12 loc) 367 B
import {ConfirmNotifierOptions, NotifierOptions, PromptNotifierOptions} from 'codex-notifier'; /** * Notifier API */ export interface Notifier { /** * Show web notification * * @param {NotifierOptions | ConfirmNotifierOptions | PromptNotifierOptions} */ show: (options: NotifierOptions | ConfirmNotifierOptions | PromptNotifierOptions) => void; }