summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/src/core/app/types.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/astro/src/core/app/types.ts b/packages/astro/src/core/app/types.ts
index cf34364ec..09f0a79d2 100644
--- a/packages/astro/src/core/app/types.ts
+++ b/packages/astro/src/core/app/types.ts
@@ -13,7 +13,8 @@ export interface RouteInfo {
file: string;
links: string[];
scripts: // Integration injected
- (| { children: string; stage: string }
+ (
+ | { children: string; stage: string }
// Hoisted
| { type: 'inline' | 'external'; value: string }
)[];