Explict imports & exports with type modifier (#3774)

This commit is contained in:
Pascal Birchler
2025-08-26 00:04:53 +02:00
committed by GitHub
parent 71c090c696
commit 0f031a7f89
332 changed files with 1086 additions and 1105 deletions

View File

@@ -56,7 +56,8 @@ export * from './services/fileSystemService.js';
export * from './ide/ide-client.js';
export * from './ide/ideContext.js';
export * from './ide/ide-installer.js';
export { getIdeInfo, DetectedIde, IdeInfo } from './ide/detect-ide.js';
export { getIdeInfo, DetectedIde } from './ide/detect-ide.js';
export { type IdeInfo } from './ide/detect-ide.js';
export * from './ide/constants.js';
// Export Shell Execution Service
@@ -88,11 +89,11 @@ export * from './tools/mcp-tool.js';
// MCP OAuth
export { MCPOAuthProvider } from './mcp/oauth-provider.js';
export {
export type {
MCPOAuthToken,
MCPOAuthCredentials,
MCPOAuthTokenStorage,
} from './mcp/oauth-token-storage.js';
export { MCPOAuthTokenStorage } from './mcp/oauth-token-storage.js';
export type { MCPOAuthConfig } from './mcp/oauth-provider.js';
export type {
OAuthAuthorizationServerMetadata,