Queues a negative toast.
(children: string, options: ToastOptions = {})
| 152 | }, |
| 153 | /** Queues a negative toast. */ |
| 154 | negative(children: string, options: ToastOptions = {}): CloseFunction { |
| 155 | return addToast(children, 'negative', options); |
| 156 | }, |
| 157 | /** Queues an informational toast. */ |
| 158 | info(children: string, options: ToastOptions = {}): CloseFunction { |
| 159 | return addToast(children, 'info', options); |
nothing calls this directly
no test coverage detected