| 7 | |
| 8 | // API response type |
| 9 | export interface ApiResponse<T = any> { |
| 10 | code: number; |
| 11 | message?: string; |
| 12 | data?: T; |
| 13 | } |
| 14 | |
| 15 | // Model source type |
| 16 | export type ModelSource = |
nothing calls this directly
no outgoing calls
no test coverage detected