Skip to main content
Module

x/args/index.ts>flags.CollectOption

Extensible CLI arguments parser for Deno with intelligent TypeScript inference
Go to Latest
variable flags.CollectOption
import { flags } from "https://deno.land/x/args@2.1.0/index.ts";
const { CollectOption } = flags;

Declare an option that collects value after flags

CLI example: --opt foo --opt bar --opt baz["foo", "bar", "baz"]

type

<Name extends string, Value>(name: Name, descriptor: CollectOptionDescriptor<Value>) => FlagType<Name, Value[]>