import type { ErrorReport } from "./ErrorReport"; import type { Name } from "./Name"; import type { NevoProps } from "./NevoProps"; export type ItemProps< T, E extends ErrorReport = ErrorReport, > = NevoProps & { key: string; id: string; name: Name; };