Queues a positive toast.
(children: string, options: ToastOptions = {})
| 148 | }, |
| 149 | /** Queues a positive toast. */ |
| 150 | positive(children: string, options: ToastOptions = {}): CloseFunction { |
| 151 | return addToast(children, 'positive', options); |
| 152 | }, |
| 153 | /** Queues a negative toast. */ |
| 154 | negative(children: string, options: ToastOptions = {}): CloseFunction { |
| 155 | return addToast(children, 'negative', options); |
nothing calls this directly
no test coverage detected