Type alias WithArray

WithArray: {
    append?: true;
    limit?: number;
    separator?: string | RegExp;
    unique?: true;
}

Defines attributes common to array-valued options.

Type declaration

  • Optional Readonly append?: true

    Allows appending elements if specified multiple times.

  • Optional Readonly limit?: number

    The maximum allowed number of elements.

  • Optional Readonly separator?: string | RegExp

    The parameter value separator. If specified, the option accepts a single parameter.

  • Optional Readonly unique?: true

    True if duplicate elements should be removed.