* 公共方法:清空指定插件的所有数据
(
pluginName: string
)
| 752 | * 公共方法:清空指定插件的所有数据 |
| 753 | */ |
| 754 | public async clearPluginData( |
| 755 | pluginName: string |
| 756 | ): Promise<{ success: boolean; deletedCount?: number; error?: string }> { |
| 757 | return await this._clearPluginData(pluginName) |
| 758 | } |
| 759 | } |
| 760 | |
| 761 | export default new DatabaseAPI() |
no test coverage detected