(request: {
source: string
local?: boolean | undefined
projectPath?: string | undefined | null | undefined
chat?: boolean | undefined
})
| 25 | } |
| 26 | |
| 27 | export async function removePiPackage(request: { |
| 28 | source: string |
| 29 | local?: boolean | undefined |
| 30 | projectPath?: string | undefined | null | undefined |
| 31 | chat?: boolean | undefined |
| 32 | }): Promise<PiPackageMutationResult> { |
| 33 | const result = await invokeRuntimeHost('removePiPackage', request) |
| 34 | await invalidateRuntimeHostSettings({ |
| 35 | projectPath: request.chat ? null : request.local ? request.projectPath : null, |
| 36 | }) |
| 37 | return result |
| 38 | } |
nothing calls this directly
no test coverage detected