Queues an informational toast.
(children: string, options: ToastOptions = {})
| 156 | }, |
| 157 | /** Queues an informational toast. */ |
| 158 | info(children: string, options: ToastOptions = {}): CloseFunction { |
| 159 | return addToast(children, 'info', options); |
| 160 | } |
| 161 | }; |
| 162 | |
| 163 | export {SpectrumToastQueue as ToastQueue}; |
nothing calls this directly
no test coverage detected