Skip to main content
Module

x/cliffy/command/types.ts>IParseResult

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

Result of cmd.parse() method.

Type Parameters

optional
O extends Record<string, any> | void = any
optional
A extends Array<unknown> = O extends number ? any : []
optional
G extends Record<string, any> | void = O extends number ? any : void
optional
PG extends Record<string, any> | void = O extends number ? any : void
optional
CT extends Record<string, any> | void = O extends number ? any : void
optional
GT extends Record<string, any> | void = O extends number ? any : void
optional
PT extends Record<string, any> | void = O extends number ? any : void
optional
P extends Command<any> | undefined = O extends number ? any : undefined

Properties

options: Id<Merge<Merge<PG, G>, O>>
args: A
literal: string[]
cmd: Command<PG, PT, O, A, G, CT, GT, P>