@@ -2,11 +2,11 @@ import * as vscode from 'vscode';
2
2
import { EJSON } from 'bson' ;
3
3
import type { Document } from 'bson' ;
4
4
5
- import ActiveConnectionCodeLensProvider from './activeConnectionCodeLensProvider' ;
6
- import ExportToLanguageCodeLensProvider from './exportToLanguageCodeLensProvider' ;
5
+ import type ActiveConnectionCodeLensProvider from './activeConnectionCodeLensProvider' ;
6
+ import type ExportToLanguageCodeLensProvider from './exportToLanguageCodeLensProvider' ;
7
7
import PlaygroundSelectedCodeActionProvider from './playgroundSelectedCodeActionProvider' ;
8
8
import PlaygroundDiagnosticsCodeActionProvider from './playgroundDiagnosticsCodeActionProvider' ;
9
- import ConnectionController from '../connectionController' ;
9
+ import type ConnectionController from '../connectionController' ;
10
10
import CollectionDocumentsCodeLensProvider from './collectionDocumentsCodeLensProvider' ;
11
11
import CollectionDocumentsOperationsStore from './collectionDocumentsOperationsStore' ;
12
12
import CollectionDocumentsProvider , {
@@ -17,8 +17,8 @@ import CollectionDocumentsProvider, {
17
17
} from './collectionDocumentsProvider' ;
18
18
import { createLogger } from '../logging' ;
19
19
import DocumentIdStore from './documentIdStore' ;
20
- import { DocumentSource } from '../documentSource' ;
21
- import EditDocumentCodeLensProvider from './editDocumentCodeLensProvider' ;
20
+ import type { DocumentSource } from '../documentSource' ;
21
+ import type EditDocumentCodeLensProvider from './editDocumentCodeLensProvider' ;
22
22
import type { EditDocumentInfo } from '../types/editDocumentInfoType' ;
23
23
import formatError from '../utils/formatError' ;
24
24
import { MemoryFileSystemProvider } from './memoryFileSystemProvider' ;
@@ -27,12 +27,11 @@ import MongoDBDocumentService, {
27
27
DOCUMENT_SOURCE_URI_IDENTIFIER ,
28
28
VIEW_DOCUMENT_SCHEME ,
29
29
} from './mongoDBDocumentService' ;
30
- import PlaygroundController from './playgroundController' ;
31
- import PlaygroundResultProvider , {
32
- PLAYGROUND_RESULT_SCHEME ,
33
- } from './playgroundResultProvider' ;
30
+ import type PlaygroundController from './playgroundController' ;
31
+ import type PlaygroundResultProvider from './playgroundResultProvider' ;
32
+ import { PLAYGROUND_RESULT_SCHEME } from './playgroundResultProvider' ;
34
33
import { StatusView } from '../views' ;
35
- import TelemetryService from '../telemetry/telemetryService' ;
34
+ import type TelemetryService from '../telemetry/telemetryService' ;
36
35
37
36
const log = createLogger ( 'editors controller' ) ;
38
37
0 commit comments