vue-snotify
Version:
A Vue.js toast notifications
26 lines (25 loc) • 415 B
TypeScript
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;
}