import './astro-jsx'; import type { AstroBuiltinAttributes } from './dist/@types/astro.js'; import type { OmitIndexSignature, Simplify } from './dist/type-utils.js'; /** Any supported HTML or SVG element name, as defined by the HTML specification */ export type HTMLTag = keyof astroHTML.JSX.DefinedIntrinsicElements; /** The built-in attributes for any known HTML or SVG element name */ export type HTMLAttributes = Omit< astroHTML.JSX.DefinedIntrinsicElements[Tag], keyof Omit >; /** * All the CSS properties available, as defined by the CSS specification */ export type CSSProperty = keyof astroHTML.JSX.KebabCSSDOMProperties; type PolymorphicAttributes

= Omit & { as?: P['as']; } & Omit< // This is the same as HTMLAttributes, except we're using OmitIndexSignature to remove the index signature, // used for data attribute, because it seems like it get too complex for TypeScript with it, not sure why. OmitIndexSignature, keyof Omit >; export type Polymorphic

= PolymorphicAttributes< Omit & { as: NonNullable } >; export type ComponentProps any> = Simplify[0]>;