import type { Client, Config } from '@libsql/client'; import type { DrizzleConfig } from 'drizzle-orm'; import type { LibSQLDatabase } from 'drizzle-orm/libsql'; import type { Schema } from '../types'; export type SQLiteDataSourceOptions = { type: 'sqlite'; } & DrizzleConfig & ({ connection: string | Config; } | { client: Client; }); export type SQLiteDrizzle = LibSQLDatabase & { $client: Client; }; export interface SQLiteExecuteResult { columns: unknown[]; columnTypes: unknown[]; rows: unknown[]; rowsAffected: number; lastInsertRowid: string; } //# sourceMappingURL=interface.d.ts.map