Queues a neutral toast.
(children: string, options: ToastOptions = {})
| 144 | const SpectrumToastQueue = { |
| 145 | /** Queues a neutral toast. */ |
| 146 | neutral(children: string, options: ToastOptions = {}): CloseFunction { |
| 147 | return addToast(children, 'neutral', options); |
| 148 | }, |
| 149 | /** Queues a positive toast. */ |
| 150 | positive(children: string, options: ToastOptions = {}): CloseFunction { |
| 151 | return addToast(children, 'positive', options); |
nothing calls this directly
no test coverage detected