( plugin: string, scope?: InstallableScope, )
| 754 | * @returns Result indicating success/failure |
| 755 | */ |
| 756 | export async function enablePluginOp( |
| 757 | plugin: string, |
| 758 | scope?: InstallableScope, |
| 759 | ): Promise<PluginOperationResult> { |
| 760 | return setPluginEnabledOp(plugin, true, scope) |
| 761 | } |
| 762 | |
| 763 | /** |
| 764 | * Disable a plugin |
no test coverage detected