(spec: string)
| 1019 | } |
| 1020 | |
| 1021 | export async function addPlugin(spec: string) { |
| 1022 | return addPluginBySpec(runtime, spec) |
| 1023 | } |
| 1024 | |
| 1025 | export async function installPlugin(spec: string, options?: { global?: boolean }) { |
| 1026 | return installPluginBySpec(runtime, spec, options?.global) |
no test coverage detected