0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-04-07 23:41:43 -05:00

fix: correct type Config reference

This commit is contained in:
bholmesdev 2024-02-02 16:08:31 -05:00
parent cbc2b99292
commit 95140bc64c

View file

@ -1,4 +1,4 @@
declare namespace Config {
type DBUserConfig = import('./dist/config.js').DBUserConfig;
type DBUserConfig = import('./dist/core/types.js').DBUserConfig;
export interface Database extends DBUserConfig {}
}