From 77a708a3eed93973d68b68e8e69b78cb5ede5440 Mon Sep 17 00:00:00 2001 From: Herman Z <2526045+germanz@users.noreply.github.com> Date: Thu, 14 Jul 2022 20:20:10 +0200 Subject: [PATCH] fix: export AstroComponentFactory for tsc validattion to pass (#3917) --- packages/astro/src/@types/astro.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 766ee0607..4e2a3276f 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -15,6 +15,7 @@ import type { PageBuildData } from '../core/build/types'; import type { AstroConfigSchema } from '../core/config'; import type { ViteConfigWithSSR } from '../core/create-vite'; import type { AstroComponentFactory, Metadata } from '../runtime/server'; +export type { AstroComponentFactory } from '../runtime/server'; export type { SSRManifest } from '../core/app/types'; export interface AstroBuiltinProps {