import * as dntShim from "../../../../../../_dnt.shims.js"; import { getFlag } from "../../flags/_utils.js"; import { Table } from "../../table/table.js"; import { dedent, getDescription, parseArgumentsDefinition } from "../_utils.js"; import type { Command } from "../command.js"; import { bold, brightBlue, brightMagenta, dim, getColorEnabled, green, italic, red, setColorEnabled, yellow, } from "../deps.js"; import { Type } from "../type.js"; import type { Argument, EnvVar, Example, Option } from "../types.js"; export interface HelpOptions { types?: boolean; hints?: boolean; colors?: boolean; long?: boolean; } interface OptionGroup { name?: string; options: Array