Skip to content

Commit 32afdca

Browse files
committed
feat: Finish custom provider implementation
- Add CustomProvidersSection component with provider management - Add API integration for custom providers - Implement secure API key storage and management - Implement UI and settings for custom providers - Refactor SettingsView and openFile for code quality - Fix linting issues and improve code organization
1 parent 2a785be commit 32afdca

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

webview-ui/src/shared/types.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import type {
2+
CustomProviderConfig as ExtCustomProviderConfig,
3+
ApiConfiguration as ExtApiConfiguration,
4+
} from "../../../src/shared/api"
5+
6+
export type CustomProviderConfig = ExtCustomProviderConfig
7+
export type ApiConfiguration = ExtApiConfiguration

0 commit comments

Comments
 (0)