import { CodeListing, CodeListingSeparatorType } from '../CodeListing'; import { DocContainer } from '../DocContainer'; import { Section } from '../Section'; import type { DocEnum } from '~/DocModel/DocEnum'; export interface EnumProps { data: ReturnType; } export function Enum({ data }: EnumProps) { return (
{data.members.map((member) => ( ))}
); }