UNPKG

decline-ts

Version:

Composable command-line parser for TypeScript - a (partial) porting of Scala decline using fp-ts

9 lines (8 loc) 267 B
import { AccumulatorHKT } from '../index'; export declare const URI = "Argument"; export declare type URI = typeof URI; export declare type Argument = { readonly _tag: URI; }; export declare const of: Argument; export declare const argument: AccumulatorHKT<URI>;