| 1 | import type { ResourceConfig } from '../resource'; |
| 2 | |
| 3 | export interface BaseDatum { |
| 4 | icon?: string | ResourceConfig; |
| 5 | label?: string; |
| 6 | desc?: string; |
| 7 | value?: number; |
| 8 | illus?: string | ResourceConfig; |
| 9 | attributes?: Record<string, object>; |
| 10 | [key: string]: any; |
| 11 | } |
| 12 | |
| 13 | /** |
| 14 | * 列表型数据项 |
nothing calls this directly
no outgoing calls
no test coverage detected