| 5 | import ToastContainer from '../components/ToastContainer' |
| 6 | |
| 7 | export interface ToastMessage { |
| 8 | id: string |
| 9 | type: 'success' | 'error' | 'info' |
| 10 | title: string |
| 11 | description: string |
| 12 | } |
| 13 | |
| 14 | interface ToastShow { |
| 15 | (message: Omit<ToastMessage, 'id'>): string |
nothing calls this directly
no outgoing calls
no test coverage detected