From c04f1a040daa48db49b118ff9ab0f7ccb7503cb3 Mon Sep 17 00:00:00 2001 From: Samuel Olivier Date: Mon, 6 Jun 2022 11:59:26 +0200 Subject: [PATCH] feat: expose DisposableCollection --- src/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index b3757da..52d5375 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,7 @@ import { BindContext, createLanguageClient, LanguageClient, LanguageClientDisposeReason, LanguageClientOptions } from './language-client' import { bindLanguageClient, ConnectionClosedError, EndCause, LanguageClientBindingOptions, UnknownRequestHandler } from './language-client-mutualization' import { ConnectionRequestCache } from './tools/cache' +import { DisposableCollection } from './tools/disposable' export { bindLanguageClient, createLanguageClient } @@ -13,5 +14,6 @@ export type { ConnectionClosedError, BindContext, ConnectionRequestCache, - EndCause + EndCause, + DisposableCollection }