MCPcopy
hub / github.com/ZToolsCenter/ZTools / PluginDataRecord

Interface PluginDataRecord

src/shared/pluginRuntimeNamespace.ts:35–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33 * 设置页"我的数据"所需的最小插件数据记录。
34 */
35export 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 * 生成插件私有数据库文档前缀。

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected