/opt/canhelp/node_modules/drizzle-orm/bun-sql
Edit: /opt/canhelp/node_modules/drizzle-orm/bun-sql/driver.d.cts (1152B)
import type { SQLOptions } from 'bun';
import { SQL } from 'bun';
import { entityKind } from "../entity.cjs";
import { PgDatabase } from "../pg-core/db.cjs";
import { type DrizzleConfig } from "../utils.cjs";
import type { BunSQLQueryResultHKT } from "./session.cjs";
export declare class BunSQLDatabase
= Record> extends PgDatabase {
static readonly [entityKind]: string;
}
export declare function drizzle = Record, TClient extends SQL = SQL>(...params: [
TClient | string
] | [
TClient | string,
DrizzleConfig
] | [
(DrizzleConfig & ({
connection: string | ({
url?: string;
} & SQLOptions);
} | {
client: TClient;
}))
]): BunSQLDatabase & {
$client: TClient;
};
export declare namespace drizzle {
function mock = Record>(config?: DrizzleConfig): BunSQLDatabase & {
$client: '$client is not available on drizzle.mock()';
};
}