mirror of
https://github.com/withastro/astro.git
synced 2025-02-10 22:38:53 -05:00
9 lines
530 B
TypeScript
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;
|
|
}
|