From 05e46c5f52819053baec1ada17ce2c20a7fe11fc Mon Sep 17 00:00:00 2001 From: Luis Silva Date: Fri, 25 Aug 2023 17:18:42 -0300 Subject: [PATCH] Fix libsql/client type import --- drizzle-orm/src/libsql/session.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drizzle-orm/src/libsql/session.ts b/drizzle-orm/src/libsql/session.ts index 0271bc881..210cd6429 100644 --- a/drizzle-orm/src/libsql/session.ts +++ b/drizzle-orm/src/libsql/session.ts @@ -1,4 +1,4 @@ -import { type Client, type InArgs, type InStatement, type ResultSet, type Transaction } from '@libsql/client'; +import type { Client, InArgs, InStatement, ResultSet, Transaction } from '@libsql/client'; import { entityKind } from '~/entity.ts'; import type { Logger } from '~/logger.ts'; import { NoopLogger } from '~/logger.ts';