import { Children, For, Indent } from "@alloy-js/core"; export interface ArgumentListProps { args?: Children[]; omitParensWhenEmpty?: boolean; } /** * A list of arguments to be passed to a function, constructor, enum, and so * forth. Includes parenthesis when arguments are passed, otherwise returns an * empty string. */ export function ArgumentList(props: ArgumentListProps) { if (props.omitParensWhenEmpty && (!props.args || props.args.length === 0)) { return ""; } return ( ( {(value) => value} ) ); }