Skip to main content
Module

x/args/flag-types.ts>Option

Extensible CLI arguments parser for Deno with intelligent TypeScript inference
Go to Latest
variable Option
import { Option } from "https://deno.land/x/args@2.1.0/flag-types.ts";

Declare an option, including:

  • A flag
  • A value right after the flag

type

<Name extends string, Value>(name: Name, descriptor: OptionDescriptor<Value>) => FlagType<Name, Value>