summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2022-06-22 16:21:26 +0000
committerGravatar github-actions[bot] <github-actions[bot]@users.noreply.github.com> 2022-06-22 16:21:26 +0000
commitc97bdf1a45416ab7075463247b6469ee07753a5b (patch)
tree54e51b1d76c78ec0f64c6e523363a0932a8ac7e3
parent8ad146a5d76e882f5c95a84e0d32973b1b16f24a (diff)
downloadastro-c97bdf1a45416ab7075463247b6469ee07753a5b.tar.gz
astro-c97bdf1a45416ab7075463247b6469ee07753a5b.tar.zst
astro-c97bdf1a45416ab7075463247b6469ee07753a5b.zip
[ci] format
-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 }
)[];