Callbacks
toast.on( event, callback )
You can chain callbacks
on(e, func).on(e, func)...
Callback
type:
FunctionSignature:
(toast: Snotify) => void
Events
"mounted""beforeShow""shown""input""click""mouseenter""mouseleave""beforeHide""hidden""destroyed"Events type - SnotifyEvent
toast.on( "click", (toast: Snotify) => { toast.body = "Change body..."; } )