0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/packages/db/virtual.d.ts
Ben Holmes a60861c960
fix: move db ambient types to separate module (#10340)
* fix: move ambient types to separate modue

* chore: changeset
2024-03-06 08:30:45 -05:00

9 lines
530 B
TypeScript

declare module 'astro:db' {
export const sql: typeof import('./dist/runtime/config.js').sql;
export const NOW: typeof import('./dist/runtime/config.js').NOW;
export const TRUE: typeof import('./dist/runtime/config.js').TRUE;
export const FALSE: typeof import('./dist/runtime/config.js').FALSE;
export const column: typeof import('./dist/runtime/config.js').column;
export const defineDB: typeof import('./dist/runtime/config.js').defineDB;
export const defineTable: typeof import('./dist/runtime/config.js').defineTable;
}