Skip to content

Commit ae67110

Browse files
committed
feat: Export additional types
1 parent 8aee335 commit ae67110

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/index.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import 'proxy-polyfill'
2+
import { WorkspaceFolder } from 'vscode'
23
import { WillShutdownParams } from './customRequests'
34
import { loadExtensionConfigurations } from './extensionConfiguration'
45
import './hacks'
6+
import { CodinGameInfrastructure, Infrastructure } from './infrastructure'
57
import { createLanguageClientManager, LanguageClientManager, StatusChangeEvent } from './languageClient'
68
import { LanguageClientId, registerLanguageClient } from './languageClientOptions'
79
import { StaticLanguageClientId } from './staticOptions'
@@ -10,12 +12,15 @@ export {
1012
loadExtensionConfigurations,
1113
createLanguageClientManager,
1214
registerLanguageClient,
13-
LanguageClientManager
15+
LanguageClientManager,
16+
CodinGameInfrastructure
1417
}
1518

1619
export type {
1720
StatusChangeEvent,
1821
StaticLanguageClientId,
1922
LanguageClientId,
20-
WillShutdownParams
23+
WillShutdownParams,
24+
Infrastructure,
25+
WorkspaceFolder
2126
}

0 commit comments

Comments
 (0)