27 lines
688 B
TypeScript
27 lines
688 B
TypeScript
declare module '#astro/compiler' {
|
|
export * from 'astro/dist/types/compiler';
|
|
}
|
|
declare module '#astro/ast' {
|
|
export * from 'astro/dist/types/ast';
|
|
}
|
|
declare module '#astro/build' {
|
|
export * from 'astro/dist/types/build';
|
|
}
|
|
declare module '#astro/cli' {
|
|
export * from 'astro/dist/types/cli';
|
|
}
|
|
declare module '#astro/config' {
|
|
export * from 'astro/dist/types/config';
|
|
}
|
|
declare module '#astro/dev' {
|
|
export * from 'astro/dist/types/dev';
|
|
}
|
|
declare module '#astro/logger' {
|
|
export * from 'astro/dist/types/logger';
|
|
}
|
|
declare module '#astro/runtime' {
|
|
export * from 'astro/dist/types/runtime';
|
|
}
|
|
declare module '#astro/search' {
|
|
export * from 'astro/dist/types/search';
|
|
}
|