decline-ts
Version:
Composable command-line parser for TypeScript - a (partial) porting of Scala decline using fp-ts
10 lines (9 loc) • 349 B
TypeScript
import { AccumulatorHKT } from '../index';
export declare const URI = "Arguments";
export declare type URI = typeof URI;
export declare type Arguments = {
readonly _tag: URI;
readonly stack: ReadonlyArray<string>;
};
export declare const of: (stack: ReadonlyArray<string>) => Arguments;
export declare const arguments_: AccumulatorHKT<URI>;