fix: updating HTML attribute types for the <link> element (#6639)
* fix: updating a few camel-cased properties on the LinkHTMLAttributes type * chore: add changeset --------- Co-authored-by: Tony Sullivan <tony.f.sullivan@outlook.com>
This commit is contained in:
parent
12d42f47bd
commit
25cd3e5749
2 changed files with 8 additions and 3 deletions
5
.changeset/perfect-rabbits-repair.md
Normal file
5
.changeset/perfect-rabbits-repair.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Fixes an attribute naming mismatch in the definition for <link> elements in astro.JSX
|
6
packages/astro/astro-jsx.d.ts
vendored
6
packages/astro/astro-jsx.d.ts
vendored
|
@ -789,9 +789,9 @@ declare namespace astroHTML.JSX {
|
|||
fetchpriority?: 'auto' | 'high' | 'low' | undefined | null;
|
||||
integrity?: string | undefined | null;
|
||||
media?: string | undefined | null;
|
||||
imageSrcSet?: string | undefined | null;
|
||||
imageSizes?: string | undefined | null;
|
||||
referrerPolicy?: HTMLAttributeReferrerPolicy | undefined | null;
|
||||
imagesrcset?: string | undefined | null;
|
||||
imagesizes?: string | undefined | null;
|
||||
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined | null;
|
||||
rel?: string | undefined | null;
|
||||
sizes?: string | undefined | null;
|
||||
type?: string | undefined | null;
|
||||
|
|
Loading…
Reference in a new issue