(title: string, description?: string)
| 46 | return this.show({ title, description, variant: 'warning' }) |
| 47 | }, |
| 48 | info(title: string, description?: string) { |
| 49 | return this.show({ title, description, variant: 'info' }) |
| 50 | }, |
| 51 | dismiss(id: string) { |
| 52 | toastList = toastList.filter((t) => t.id !== id) |
| 53 | emit() |
nothing calls this directly
no outgoing calls
no test coverage detected