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