UNPKG

plsargs

Version:

😎 Another Argument Parser: But it's supports quotes!

13 lines (12 loc) • 318 B
export declare type TRawResult = { _: Array<string>; [key: string]: any; }; export declare class Result { raw: TRawResult; constructor(raw: TRawResult); has(key: string | number): boolean; get(key: string | number): string | undefined; get _(): string[]; clone(): Result; }