Skip to content

Commit ee9bae8

Browse files
committed
fix: Export more types
1 parent 05cc476 commit ee9bae8

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/index.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1+
import { TextDocument, TextDocumentSaveReason } from 'monaco-languageclient'
12
import 'proxy-polyfill'
23
import { WorkspaceFolder } from 'vscode'
4+
import { CodinGameInfrastructure, Infrastructure } from './infrastructure'
35
import { WillShutdownParams } from './customRequests'
46
import { loadExtensionConfigurations } from './extensionConfiguration'
57
import './hacks'
6-
import { CodinGameInfrastructure, Infrastructure } from './infrastructure'
78
import { createLanguageClientManager, LanguageClientManager, StatusChangeEvent } from './languageClient'
89
import { LanguageClientId, registerLanguageClient } from './languageClientOptions'
910
import { StaticLanguageClientId } from './staticOptions'
@@ -22,5 +23,7 @@ export type {
2223
LanguageClientId,
2324
WillShutdownParams,
2425
Infrastructure,
25-
WorkspaceFolder
26+
WorkspaceFolder,
27+
TextDocument,
28+
TextDocumentSaveReason
2629
}

0 commit comments

Comments
 (0)