( plugin: string, scope?: InstallableScope, )
| 768 | * @returns Result indicating success/failure |
| 769 | */ |
| 770 | export async function disablePluginOp( |
| 771 | plugin: string, |
| 772 | scope?: InstallableScope, |
| 773 | ): Promise<PluginOperationResult> { |
| 774 | return setPluginEnabledOp(plugin, false, scope) |
| 775 | } |
| 776 | |
| 777 | /** |
| 778 | * Disable all enabled plugins |
no test coverage detected