UNPKG

@fulldevlabs/fullui

Version:

A component library built for Astro

9 lines (7 loc) 224 B
import type { AstroGlobal } from 'astro' export type Childmorphic<C extends AstroGlobal['props']> = { [Key in keyof C & string as | Lowercase<Key> | Capitalize<Key> | `${string}${Capitalize<Key>}`]?: C[Key] }