Type Alias Parsed<T>

Parsed<T>: {
    positionals: string[];
    values: OptionsResults<T>;
}

The object retured by Jack#parse

Type Parameters