Skip to content

Commit ed8c93f

Browse files
committed
chore(jdbc-driver): Use import type
1 parent 56f2543 commit ed8c93f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

packages/cubejs-jdbc-driver/src/JDBCDriver.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ import { promisify } from 'util';
2020
import genericPool, { Factory, Pool } from 'generic-pool';
2121
import path from 'path';
2222

23-
import { DriverOptionsInterface, SupportedDrivers } from './supported-drivers';
24-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
25-
import { JDBCDriverConfiguration } from './types';
26-
import { QueryStream, nextFn, transformRow } from './QueryStream';
23+
import { SupportedDrivers } from './supported-drivers';
24+
import type { DriverOptionsInterface } from './supported-drivers';
25+
import type { JDBCDriverConfiguration } from './types';
26+
import { QueryStream, transformRow } from './QueryStream';
27+
import type { nextFn } from './QueryStream';
2728

2829
/* eslint-disable no-restricted-syntax,import/no-extraneous-dependencies */
2930
const DriverManager = require('@cubejs-backend/jdbc/lib/drivermanager');

0 commit comments

Comments
 (0)