|
1 | | -import { UserConfig, DriverOptions } from "./config.js"; |
| 1 | +import type{ UserConfig, DriverOptions } from "./config.js"; |
2 | 2 | import { NodeDriverServiceProvider } from "@mongosh/service-provider-node-driver";
|
3 | 3 | import EventEmitter from "events";
|
4 | 4 | import { setAppNameParamIfMissing } from "../helpers/connectionOptions.js";
|
5 | 5 | import { packageInfo } from "./packageInfo.js";
|
6 | 6 | import ConnectionString from "mongodb-connection-string-url";
|
7 | | -import { MongoClientOptions } from "mongodb"; |
| 7 | +import type{ MongoClientOptions } from "mongodb"; |
8 | 8 | import { ErrorCodes, MongoDBError } from "./errors.js";
|
9 | | -import { DeviceId } from "../helpers/deviceId.js"; |
10 | | -import { AppNameComponents } from "../helpers/connectionOptions.js"; |
11 | | -import { CompositeLogger, LogId } from "./logger.js"; |
12 | | -import { ConnectionInfo, generateConnectionInfoFromCliArgs } from "@mongosh/arg-parser"; |
| 9 | +import type { DeviceId } from "../helpers/deviceId.js"; |
| 10 | +import type { AppNameComponents } from "../helpers/connectionOptions.js"; |
| 11 | +import type { CompositeLogger } from "./logger.js"; |
| 12 | +import { LogId } from "./logger.js"; |
| 13 | +import type { ConnectionInfo } from "@mongosh/arg-parser"; |
| 14 | +import { generateConnectionInfoFromCliArgs } from "@mongosh/arg-parser"; |
13 | 15 |
|
14 | 16 | export interface AtlasClusterConnectionInfo {
|
15 | 17 | username: string;
|
|
0 commit comments