0
Fork 0
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:
Oliver Speir 2024-06-10 09:53:38 -06:00 committed by GitHub
parent 2bdca27ff4
commit 29463dff52
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 5 deletions

View file

@ -0,0 +1,5 @@
---
'@astrojs/db': patch
---
Export type `Database` from `@astrojs/db/runtime`

View file

@ -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';

View file

@ -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,