import type { IfExtends } from "hry-types/src/Any/IfExtends"; import type { CustomEventsTags } from "../CustomEvents/CustomEventsTag"; export type CustomEventMethods = { [k in keyof O]: IfExtends< Exclude & {}, never, () => void, (detail: Exclude) => void >; };