( scope: ExtendedPluginScope, )
| 168 | * @returns true if the scope should be persisted to installed_plugins.json |
| 169 | */ |
| 170 | export function isPersistableScope( |
| 171 | scope: ExtendedPluginScope, |
| 172 | ): scope is PersistablePluginScope { |
| 173 | return scope !== 'flag' |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * Convert SettingSource to plugin scope. |
nothing calls this directly
no outgoing calls
no test coverage detected