diff --git a/packages/astro/src/actions/runtime/virtual/server.ts b/packages/astro/src/actions/runtime/virtual/server.ts index 8f0d6e111dbf..326bbf4f9be6 100644 --- a/packages/astro/src/actions/runtime/virtual/server.ts +++ b/packages/astro/src/actions/runtime/virtual/server.ts @@ -19,7 +19,7 @@ export type ActionHandler = TInputSchema extends z.ZodTyp ? (input: z.infer, context: ActionAPIContext) => MaybePromise : (input: any, context: ActionAPIContext) => MaybePromise; -export type ActionReturnType> = Awaited>; +export type ActionReturnType> = Awaited>; export type ActionClient< TOutput,