web-csv-toolbox - v0.14.0
    Preparing search index...

    Type Alias InferStrategy<Options>

    InferStrategy: Options extends { columnCountStrategy: infer S }
        ? S extends ColumnCountStrategy ? S : "keep"
        : "keep"

    Helper type to infer the column count strategy from ParseOptions.

    Type Parameters

    • Options

    This type extracts the columnCountStrategy from options and defaults to 'keep' if not specified.