diff options
author | 2021-06-24 22:42:22 +0000 | |
---|---|---|
committer | 2021-06-24 22:42:22 +0000 | |
commit | bc9e0f180ccec7d48fde49c857188543e007bf14 (patch) | |
tree | df14cb39f6067819c74a6870fcbb390f39c73a7d | |
parent | 47ac2ccd17031dca576175e79b8196db615b5c35 (diff) | |
download | astro-bc9e0f180ccec7d48fde49c857188543e007bf14.tar.gz astro-bc9e0f180ccec7d48fde49c857188543e007bf14.tar.zst astro-bc9e0f180ccec7d48fde49c857188543e007bf14.zip |
[ci] yarn format
-rw-r--r-- | packages/astro/src/compiler/codegen/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/compiler/codegen/index.ts b/packages/astro/src/compiler/codegen/index.ts index 0455ee0dd..02f898564 100644 --- a/packages/astro/src/compiler/codegen/index.ts +++ b/packages/astro/src/compiler/codegen/index.ts @@ -33,7 +33,7 @@ const { transformSync } = esbuild; interface Attribute { start: number; end: number; - type: 'Attribute'|'Spread'; + type: 'Attribute' | 'Spread'; name: string; value: TemplateNode[] | boolean; expression?: Expression; |