This commit is contained in:
2026-04-16 14:36:28 +01:00
parent 613962a925
commit af6b44ffbe
15 changed files with 230 additions and 1 deletions
+5
View File
@@ -1336,3 +1336,8 @@ export type BunSQLiteConfigReturn = {
* Default fields automatically suggested for new tables.
*/
export declare const DefaultFields: BUN_SQLITE_FieldSchemaType[];
export type BunSQLiteQueryFieldValues<F extends string = string, T extends string = string> = {
field: F;
table?: T;
};
export type QueryRawValueType = string | number | null | undefined;