| 9 | } |
| 10 | |
| 11 | export interface Notification { |
| 12 | id: string; |
| 13 | type: 'success' | 'error' | 'warning' | 'info'; |
| 14 | title: string; |
| 15 | description?: string; |
| 16 | duration?: number; |
| 17 | } |
| 18 | |
| 19 | export interface LayoutConfig { |
| 20 | sidebarWidth: number; |
nothing calls this directly
no outgoing calls
no test coverage detected