| 33 | * 设置页"我的数据"所需的最小插件数据记录。 |
| 34 | */ |
| 35 | export interface PluginDataRecord { |
| 36 | /** 插件有效名称(开发版含 `__dev` 后缀)。 */ |
| 37 | pluginName: string |
| 38 | /** 插件展示标题。 */ |
| 39 | pluginTitle: string | null |
| 40 | /** 文档数量。 */ |
| 41 | docCount: number |
| 42 | /** 附件数量。 */ |
| 43 | attachmentCount: number |
| 44 | /** 插件图标。 */ |
| 45 | logo: string | null |
| 46 | /** 是否为开发版,供界面直接渲染 DEV 标签。 */ |
| 47 | isDevelopment: boolean |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * 生成插件私有数据库文档前缀。 |
nothing calls this directly
no outgoing calls
no test coverage detected