@editorjs/editorjs
Version:
Editor.js — open source block-style WYSIWYG editor with JSON output
15 lines (12 loc) • 367 B
TypeScript
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;
}