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

    Type Alias InferStrategy<Options>

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

    Helper type to infer the column count strategy from ParseOptions.

    Type Parameters

    • Options

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