mirror of
https://github.com/mgerb/ps-launcher
synced 2026-01-09 01:52:57 +00:00
25 lines
475 B
TypeScript
25 lines
475 B
TypeScript
import 'jquery';
|
|
import toastr from 'toastr';
|
|
import './toast.scss';
|
|
|
|
toastr.options = {
|
|
closeButton: false,
|
|
debug: false,
|
|
newestOnTop: false,
|
|
progressBar: false,
|
|
positionClass: 'toast-bottom-right',
|
|
preventDuplicates: true,
|
|
showDuration: 300,
|
|
hideDuration: 1000,
|
|
timeOut: 5000,
|
|
extendedTimeOut: 1000,
|
|
showEasing: 'swing',
|
|
hideEasing: 'linear',
|
|
showMethod: 'fadeIn',
|
|
hideMethod: 'fadeOut',
|
|
tapToDismiss: false,
|
|
};
|
|
|
|
export const toast = toastr;
|
|
|