mirror of
https://github.com/withastro/astro.git
synced 2024-12-30 22:03:56 -05:00
58f9e393a1
* chore: changeset * Update .changeset/cuddly-moons-hang.md Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> --------- Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
25 lines
1,000 B
TypeScript
25 lines
1,000 B
TypeScript
import './astro-jsx';
|
|
import type { AstroBuiltinAttributes } from './dist/@types/astro.js';
|
|
import type { 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<Tag extends HTMLTag> = Omit<
|
|
astroHTML.JSX.IntrinsicElements[Tag],
|
|
keyof Omit<AstroBuiltinAttributes, 'class:list'>
|
|
>;
|
|
|
|
/**
|
|
* All the CSS properties available, as defined by the CSS specification
|
|
*/
|
|
export type CSSProperty = keyof astroHTML.JSX.KebabCSSDOMProperties;
|
|
|
|
type PolymorphicAttributes<P extends { as: HTMLTag }> = Omit<P & HTMLAttributes<P['as']>, 'as'> & {
|
|
as?: P['as'];
|
|
};
|
|
export type Polymorphic<P extends { as: HTMLTag }> = PolymorphicAttributes<
|
|
Omit<P, 'as'> & { as: NonNullable<P['as']> }
|
|
>;
|
|
|
|
export type ComponentProps<T extends (args: any) => any> = Simplify<Parameters<T>[0]>;
|