lume
Version:
12 lines (10 loc) • 404 B
TypeScript
import type {FlickeringOrbs, FlickeringOrbsAttributes} from './FlickeringOrbs'
import type {ReactElementAttributes} from '@lume/element/src/react'
// React users can import this to have appropriate types for the element in their JSX markup.
declare global {
namespace JSX {
interface IntrinsicElements {
'flickering-orbs': ReactElementAttributes<FlickeringOrbs, FlickeringOrbsAttributes>
}
}
}