mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
Export type Database from db/runtime (#11216)
* import and export in index.ts * remove import and export from virtual.ts * add changset * Update .changeset/warm-pets-tap.md Co-authored-by: Emanuele Stoppa <my.burning@gmail.com> --------- Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
This commit is contained in:
parent
2bdca27ff4
commit
29463dff52
3 changed files with 7 additions and 5 deletions
5
.changeset/warm-pets-tap.md
Normal file
5
.changeset/warm-pets-tap.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'@astrojs/db': patch
|
||||
---
|
||||
|
||||
Export type `Database` from `@astrojs/db/runtime`
|
|
@ -11,7 +11,8 @@ import {
|
|||
import type { DBColumn, DBTable } from '../core/types.js';
|
||||
import { type SerializedSQL, isSerializedSQL } from './types.js';
|
||||
import { pathToFileURL } from './utils.js';
|
||||
|
||||
import { type LibSQLDatabase } from 'drizzle-orm/libsql';
|
||||
export type Database = Omit<LibSQLDatabase, 'transaction'>;
|
||||
export type { Table } from './types.js';
|
||||
export { createRemoteDatabaseClient, createLocalDatabaseClient } from './db-client.js';
|
||||
|
||||
|
|
|
@ -11,10 +11,6 @@ import type {
|
|||
TextColumnOpts,
|
||||
} from '../core/types.js';
|
||||
|
||||
import type { LibSQLDatabase } from 'drizzle-orm/libsql';
|
||||
|
||||
export type Database = Omit<LibSQLDatabase, 'transaction'>;
|
||||
|
||||
function createColumn<S extends string, T extends Record<string, unknown>>(type: S, schema: T) {
|
||||
return {
|
||||
type,
|
||||
|
|
Loading…
Add table
Reference in a new issue