8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
declare module '*.astro' {
|
|
import type { AstroComponentFactory } from 'astro';
|
|
const component: AstroComponentFactory;
|
|
export default component;
|
|
}
|
|
|
|
/// <reference types="astro/client" />
|