| 478 | |
| 479 | // 收藏文件夹 |
| 480 | export interface FavoriteFolder { |
| 481 | id: string |
| 482 | name: string |
| 483 | description?: string |
| 484 | parentId?: string // 支持嵌套 |
| 485 | expanded?: boolean // 是否展开 |
| 486 | color?: string // 文件夹颜色 |
| 487 | icon?: string // 自定义图标 |
| 488 | createdAt: number |
| 489 | order?: number |
| 490 | } |
| 491 | |
| 492 | // ==================== 消息队列功能类型定义 ==================== |
| 493 |
nothing calls this directly
no outgoing calls
no test coverage detected