Documentation
    Preparing search index...

    Type Alias ArgumentsParserOptions

    The options accepted by the arguments parser

    type ArgumentsParserOptions = {
        type: "string" | "spread";
        default?: any;
        parse?: (value: any) => any;
    }
    Index

    Properties

    Properties

    type: "string" | "spread"
    default?: any
    parse?: (value: any) => any