0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-13 22:11:20 -05:00

[ci] format

This commit is contained in:
Matthew Phillips 2024-07-17 18:56:58 +00:00 committed by Emanuele Stoppa
parent b26cc7e253
commit 0c534a4129

View file

@ -6,11 +6,7 @@ export type AstroFactoryReturnValue = RenderTemplateResult | Response | HeadAndC
// The callback passed to to $$createComponent
export interface AstroComponentFactory {
(
result: any,
props: any,
slots: any
): AstroFactoryReturnValue | Promise<AstroFactoryReturnValue>;
(result: any, props: any, slots: any): AstroFactoryReturnValue | Promise<AstroFactoryReturnValue>;
isAstroComponentFactory?: boolean;
moduleId?: string | undefined;
propagation?: PropagationHint;