Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Latest
type alias Cliffy.IHelpHandler
Re-export
import { type Cliffy } from "https://deno.land/x/dmm@v2.1.2/tests/integration/up-to-date-deps/original_deps.ts";
const { IHelpHandler } = Cliffy;

Help callback method to print the help. Invoked by the --help option and help command and the .getHelp() and .showHelp() method's.

Type Parameters

optional
O extends Record<string, any> | void = any
optional
A extends Array<unknown> = any
optional
G extends Record<string, any> | void = any
optional
PG extends Record<string, any> | void = any
optional
P extends Command | undefined = any
optional
C extends Command<O, A, G, PG, P> = Command<O, A, G, PG, P>
definition: (
this: C,
cmd: C,
options: HelpOptions,
) => string