diff options
Diffstat (limited to 'src/custom-attributes.d.ts')
-rw-r--r-- | src/custom-attributes.d.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/custom-attributes.d.ts b/src/custom-attributes.d.ts new file mode 100644 index 0000000..a9383ea --- /dev/null +++ b/src/custom-attributes.d.ts @@ -0,0 +1,8 @@ +declare namespace astroHTML.JSX { + // interface HTMLAttributes<"form"> { + // "rel"?: string; + // } + interface FormHTMLAttributes { + "rel"?: string; + } +} |