diff --git a/.changeset/happy-sheep-chew.md b/.changeset/happy-sheep-chew.md new file mode 100644 index 000000000000..1d63fd102660 --- /dev/null +++ b/.changeset/happy-sheep-chew.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Add `is:raw` to AstroBuiltinAttributes diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index baf4a22e761c..f2c5577de0ca 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -25,6 +25,7 @@ export interface AstroBuiltinAttributes { | string; 'set:html'?: any; 'set:text'?: any; + 'is:raw'?: boolean; } export interface AstroDefineVarsAttribute {