Release 2025-05-19

This commit is contained in:
pluja
2025-05-19 10:19:49 +00:00
parent 046c4559e5
commit 2657f936bc
267 changed files with 0 additions and 49432 deletions

View File

@@ -1,11 +0,0 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable @typescript-eslint/no-empty-object-type */
import type { ComponentProps, HTMLTag, Polymorphic } from 'astro/types'
export type AstroComponent = (args: any) => any
export type PolymorphicComponent<Component extends AstroComponent | HTMLTag> =
(Component extends AstroComponent ? ComponentProps<Component> & { as?: Component } : {}) &
(Component extends HTMLTag ? Polymorphic<{ as: Component }> : {})
export type AstroChildren = any