( scope: PluginScope, )
| 102 | * Use this for type narrowing in conditional blocks. |
| 103 | */ |
| 104 | export function isInstallableScope( |
| 105 | scope: PluginScope, |
| 106 | ): scope is InstallableScope { |
| 107 | return VALID_INSTALLABLE_SCOPES.includes(scope as InstallableScope) |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Get the project path for scopes that are project-specific. |
no outgoing calls
no test coverage detected