| 1 | // ==================== 账户类型定义 ==================== |
| 2 | |
| 3 | export interface Account { |
| 4 | id: string |
| 5 | name: string |
| 6 | avatar?: string |
| 7 | createdAt: number |
| 8 | updatedAt?: number |
| 9 | } |
| 10 | |
| 11 | // ==================== 基础树形结构类型 ==================== |
| 12 | // 基础树元素属性 |
nothing calls this directly
no outgoing calls
no test coverage detected