From d1df82ac52843c58b78ce3ba357505d5a86af36c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eray=20Hano=C4=9Flu?= Date: Tue, 5 May 2026 15:37:24 +0300 Subject: [PATCH] fix: Update import to use `type` for `FieldInfo` to improve type clarity --- packages/connect/src/orm/commands/row-converter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/connect/src/orm/commands/row-converter.ts b/packages/connect/src/orm/commands/row-converter.ts index e5513bce..cb206f5d 100644 --- a/packages/connect/src/orm/commands/row-converter.ts +++ b/packages/connect/src/orm/commands/row-converter.ts @@ -2,7 +2,7 @@ import { DataType } from '@sqb/builder'; import type { Type } from 'ts-gems'; import type { FieldInfoMap } from '../../client/field-info-map.js'; import type { SqbConnection } from '../../client/sqb-connection.js'; -import { FieldInfo } from '../../client/types.js'; +import type { FieldInfo } from '../../client/types.js'; import type { ColumnTransformFunction } from '../orm.type.js'; import type { Repository } from '../repository.class.js'; import type { FindCommand } from './find.command.js';