blob: 1e7b00b12698a16b56a58e0e7e7d0a3b026dc78a (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import { AstroError } from 'astro/errors';
export { defineDbIntegration } from './core/utils.js';
export { asDrizzleTable } from './runtime/index.js';
export class AstroDbError extends AstroError {
name = 'Astro DB Error';
}
|