mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
8d3ab37ac4
commit acdddd728c56f25e42975db7f367ab8a998e8c41 Author: Princesseuh <3019731+Princesseuh@users.noreply.github.com> Date: Wed Jan 10 14:06:16 2024 -0500 fix: proper type augment for the config commit b41ca9aacf291d1e5f0a27b6d6339ce4fc608ec3 Author: Nate Moore <nate@astro.build> Date: Tue Jan 9 14:33:42 2024 -0600 wip: type augmentation
4 lines
142 B
TypeScript
4 lines
142 B
TypeScript
declare namespace Config {
|
|
type DBUserConfig = import('./dist/config.js').DBUserConfig;
|
|
export interface Database extends DBUserConfig {}
|
|
}
|