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