Skip to main content
Module

x/cliffy/mod.ts>IParseResult

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Go to Latest
interface IParseResult
Re-export
import { type IParseResult } from "https://deno.land/x/cliffy@v0.19.2/mod.ts";

Result of cmd.parse() method.

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

Properties

options: PG & G & O
args: A
literal: string[]
cmd: Command<O, A, G, PG, P>