diff --git a/packages/runtime/src/bun-sqlite.d.ts b/packages/runtime/src/bun-sqlite.d.ts deleted file mode 100755 index d024480..0000000 --- a/packages/runtime/src/bun-sqlite.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -/** - * Type declarations for Bun's built-in modules - * These types mirror the bun:sqlite API - */ - -declare module 'bun:sqlite' { - export class Database { - constructor(path?: string) - exec(sql: string): void - prepare(sql: string): Statement - inTransaction: boolean - close(): void - } - - export class Statement { - run(...params: unknown[]): RunResult - get(...params: unknown[]): unknown - all(...params: unknown[]): unknown[] - bind(...params: unknown[]): Statement - reset(): void - } - - export interface RunResult { - changes: number - lastInsertRowid: number | bigint - } -} \ No newline at end of file