UNPKG

vue-snotify

Version:
26 lines (25 loc) 415 B
import { SnotifyToastConfig } from '.'; /** * Snotify toast params */ export interface Snotify { /** * Toast Title * @type {string} */ title?: string; /** * Toast message * @type {string} */ body?: string; /** * Config object * @type {SnotifyToastConfig} */ config?: SnotifyToastConfig; /** * Html content */ html?: string; }