Spaces:
Sleeping
Sleeping
File size: 550 Bytes
6491ad4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import { BaseSQLiteDatabase } from "../../sqlite-core/index.cjs";
import type { DrizzleConfig } from "../../utils.cjs";
export type PrismaSQLiteDatabase = BaseSQLiteDatabase<'async', []>;
export type PrismaSQLiteConfig = Omit<DrizzleConfig, 'schema'>;
export declare function drizzle(config?: PrismaSQLiteConfig): (client: any) => {
$extends: {
extArgs: {
result: {};
model: {};
query: {};
client: {
$drizzle: () => PrismaSQLiteDatabase;
};
};
};
};
|