| 423 | |
| 424 | // 收藏项来源信息(用于溯源) |
| 425 | export interface FavoriteSource { |
| 426 | type: 'page' | 'message' |
| 427 | pageId?: string // 源页面 ID |
| 428 | messageId?: string // 源消息 ID |
| 429 | pageTitle?: string // 源页面标题(快照) |
| 430 | pageType?: 'regular' | 'crosstab' | 'object' | 'settings' |
| 431 | timestamp: number // 收藏时的时间戳 |
| 432 | } |
| 433 | |
| 434 | // 页面收藏项数据 |
| 435 | export interface PageFavoriteData { |
nothing calls this directly
no outgoing calls
no test coverage detected